Skip to content

Instantly share code, notes, and snippets.

@McTano
Created May 25, 2016 20:13
Show Gist options
  • Save McTano/507747fa24925c728f6fb78fb55d2cf8 to your computer and use it in GitHub Desktop.
Save McTano/507747fa24925c728f6fb78fb55d2cf8 to your computer and use it in GitHub Desktop.
def count_letters(string)
letters = Hash.new {|hash, key| hash[key] = [] }
string.chars.each_with_index do |c, i|
letters[c] << i
end
letters
end
puts count_letters("Hello World")
puts count_letters("I'm the goddamn batman.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment