Ad
Fundamentals
Games
Code
Diff
  • def riddle(word)
      word.downcase.count "a-z"
    end
    • def riddle(word)
    • word.count "a-zA-Z"
    • word.downcase.count "a-z"
    • end