Skip to content

Instantly share code, notes, and snippets.

@rinmu
Forked from ppworks/ranking.rb
Created September 27, 2012 10:15
Show Gist options
  • Save rinmu/3793291 to your computer and use it in GitHub Desktop.
Save rinmu/3793291 to your computer and use it in GitHub Desktop.
配列の要素をランキングする
#!/usr/bin/env ruby
def ranks scores
rank = scores.sort.reverse
scores.map{|n| rank.index(n) + 1}
end
ranks([100, 80, 90, 90, 90, 70, 70, 80]) # => [1, 5, 2, 2, 2, 7, 7, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment