This commit is contained in:
Michael Ficarra 2011-09-18 00:52:30 -03:00
parent 4419f7ca0f
commit 94a9551ffa
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ selection_sort = (list) ->
min = i
# Check the rest of the array to see if anything is smaller.
min = j if list[j] < list[min] for j in [i + 1...len]
min = k for v, k in list[i+1...] when v < list[min]
# Swap if a smaller item has been found.
[list[i], list[min]] = [list[min], list[i]] if i isnt min