Skip to content

Instantly share code, notes, and snippets.

@ericdke
Created March 28, 2014 11:01
Show Gist options
  • Save ericdke/9830203 to your computer and use it in GitHub Desktop.
Save ericdke/9830203 to your computer and use it in GitHub Desktop.
Sort hash by values
scores = {
'The Lady' => 3,
'Fate' => 2,
'Death' => 10
}
# Usage
leaderboard = scores.sort_by { |_, score| -score }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment