Skip to content

Instantly share code, notes, and snippets.

@khaled
Forked from husseinagrama/most_a.rb
Last active March 15, 2017 23:41
Show Gist options
  • Save khaled/ba6848602fe32483329a2e77d25204e4 to your computer and use it in GitHub Desktop.
Save khaled/ba6848602fe32483329a2e77d25204e4 to your computer and use it in GitHub Desktop.
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)]
@khaled
Copy link
Author

khaled commented Mar 15, 2017

renamed a few variables

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment