Skip to content

Instantly share code, notes, and snippets.

@mururu
Created May 5, 2012 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mururu/2600938 to your computer and use it in GitHub Desktop.
Save mururu/2600938 to your computer and use it in GitHub Desktop.
配列の各要素数をカウントするやつ
class Array
def add_up
Hash.new(0).tap{|h| self.each{|v| h[v]+=1 } }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment