Skip to content

Instantly share code, notes, and snippets.

@shosanna
Last active August 29, 2015 14:02
Show Gist options
  • Save shosanna/005a8b35083fcb741b80 to your computer and use it in GitHub Desktop.
Save shosanna/005a8b35083fcb741b80 to your computer and use it in GitHub Desktop.
# Insertion sort
def insertion_sort(a)
1.upto(a.length - 1) do |i|
x = a[i]
j = i - 1
while j >= 0 && a[j] > x
a[j + 1] = a[j]
j -= 1
end
a[j + 1] = x
end
return a
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment