Created
May 25, 2016 20:13
-
-
Save McTano/507747fa24925c728f6fb78fb55d2cf8 to your computer and use it in GitHub Desktop.
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_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