Created
May 11, 2014 08:12
-
-
Save IrakliJani/d7c53afe2dc727210655 to your computer and use it in GitHub Desktop.
Kata solution for Ruby user group georgia
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
def count str | |
str.split('').reduce(Hash.new 0) { |memo, c| memo[c] += 1; memo } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment