-
-
Save khaled/ba6848602fe32483329a2e77d25204e4 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
words = ["Alphabet", "aardvark", "anarchy", "purple", "apple", "avalanche", "potato"] | |
counts = [] | |
words.each do |word| | |
letters = word.split("") | |
count = 0 | |
letters.each do |letter| | |
if letter == "A" || letter == "a" | |
count = count + 1 | |
end | |
end | |
counts << count | |
end | |
p Hash[words.zip(counts)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
renamed a few variables