Skip to content

Instantly share code, notes, and snippets.

@just806me
Last active May 29, 2019 13:12
Show Gist options
  • Save just806me/72a49ed246b66e296aa765116dbcc913 to your computer and use it in GitHub Desktop.
Save just806me/72a49ed246b66e296aa765116dbcc913 to your computer and use it in GitHub Desktop.
LETTER_REGEX = /^[[:alpha:]]$/u.freeze
line = STDIN.gets.downcase
dict = Hash.new 0
line.each_char { |c| dict[c] += 1 if c =~ LETTER_REGEX }
dict.sort_by { |key, value| value }.reverse.each { |key, value| puts "#{ key }: #{ value }" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment