Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Wanted Letter by HanleyWashington
from string import ascii_letters
def checkio(text):
text = text.lower()
letter_count = [text.count(c) for c in ascii_letters]
max_index = letter_count.index( max(letter_count) )
return ascii_letters[max_index]
Feb. 5, 2015
Comments: