Skip to content

Instantly share code, notes, and snippets.

@jsscclr
Last active August 29, 2015 14:23
Show Gist options
  • Save jsscclr/870ae83edd9761ac3a8e to your computer and use it in GitHub Desktop.
Save jsscclr/870ae83edd9761ac3a8e to your computer and use it in GitHub Desktop.
array#sort! example
a = [ "d", "a", "e", "c", "b" ]
a.sort! #=> ["a", "b", "c", "d", "e"]
a.sort! { |x,y| y <=> x } #=> ["e", "d", "c", "b", "a"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment