Skip to content

Instantly share code, notes, and snippets.

@rubydubee
Created June 30, 2011 22:14
Show Gist options
  • Save rubydubee/1057410 to your computer and use it in GitHub Desktop.
Save rubydubee/1057410 to your computer and use it in GitHub Desktop.
Sorting Example 3
[1, 100,6, 23, 26, 10000].sort do |x, y|
x == 6 ? 1 : x <=> y
end
# => [1, 23, 26, 100, 10000, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment