Skip to content

Instantly share code, notes, and snippets.

@laurenachoo
Created April 29, 2015 21:57
Show Gist options
  • Save laurenachoo/fca4db72ae05f4793ad1 to your computer and use it in GitHub Desktop.
Save laurenachoo/fca4db72ae05f4793ad1 to your computer and use it in GitHub Desktop.
def count_letters(strings)
count = Hash.new(0)
strings.split('').each do |string|
count[string] += 1
end
count
end
puts count_letters("lighthouse in the house...")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment