Created
April 14, 2011 00:56
-
-
Save richdownie/918735 to your computer and use it in GitHub Desktop.
1 (histo)grams of phat
This file contains hidden or 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
array = %w( maxfli maxfli maxfli titleist callaway titleist nike titleist callaway maxfli ) | |
=> ["maxfli", "maxfli", "maxfli", "titleist", "callaway", "titleist", "nike", "titleist", "callaway", "maxfli"] | |
h = Hash.new(0) | |
=> {} | |
array.each do |word| | |
h[word] += 1 | |
end | |
=> ["maxfli", "maxfli", "maxfli", "titleist", "callaway", "titleist", "nike", "titleist", "callaway", "maxfli"] | |
h | |
=> {"maxfli"=>4, "titleist"=>3, "callaway"=>2, "nike"=>1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment