Skip to content

Instantly share code, notes, and snippets.

View ichistmeinname's full-sized avatar

Sandra Dylus ichistmeinname

View GitHub Profile
@ichistmeinname
ichistmeinname / sort.rb
Last active January 22, 2016 14:48 — forked from universal/sort.rb
# min_sort
def min_sort(to_sort)
length = to_sort.length - 1
min_index = nil
for i in 0..length
min_index = i
for j in i..length
if to_sort[j] < to_sort[min_index]
min_index = j