Skip to content

Instantly share code, notes, and snippets.

@EdDeAlmeidaJr
Created May 14, 2016 22:08
Show Gist options
  • Save EdDeAlmeidaJr/59e6fdf3c462c9bc6e74eba7fba2d17d to your computer and use it in GitHub Desktop.
Save EdDeAlmeidaJr/59e6fdf3c462c9bc6e74eba7fba2d17d to your computer and use it in GitHub Desktop.
def most_common_letter(string)
counts = Hash.new(0)
string.each_char {|c| counts[c] += 1 }
counts.max_by{|k,v| v}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment