Skip to content

Instantly share code, notes, and snippets.

@c910335
Created November 19, 2016 19:58
Show Gist options
  • Save c910335/ad9976770e9cfc94bf60cbbc6f666ac7 to your computer and use it in GitHub Desktop.
Save c910335/ad9976770e9cfc94bf60cbbc6f666ac7 to your computer and use it in GitHub Desktop.
Stable sort in Crystal
class Array
def stable_sort
each_with_index.to_a.sort.map { |x| x[0] }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment