Skip to content

Instantly share code, notes, and snippets.

@laurenachoo
Created April 29, 2015 23:30
Show Gist options
  • Save laurenachoo/03f55ee314442becd956 to your computer and use it in GitHub Desktop.
Save laurenachoo/03f55ee314442becd956 to your computer and use it in GitHub Desktop.
def count_letters(strings)
count = Hash.new(0)
strings.split('').each_with_index do |string, index|
count[string] = index
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