Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Dict expression solution in Speedy category for The Most Wanted Letter by evarome10
import string
def checkio(text):
chart = {letter: text.lower().count(letter) for letter in string.ascii_lowercase}
return max(chart, key=lambda key: chart[key])
Oct. 2, 2018
Comments: