Created
May 5, 2012 08:29
-
-
Save mururu/2600938 to your computer and use it in GitHub Desktop.
配列の各要素数をカウントするやつ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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