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 rolandp
import string
def checkio(text):
text = text.lower()
counts = [ text.count(c) for c in string.ascii_lowercase ]
return string.ascii_lowercase[ counts.index( max(counts) ) ]
Sept. 26, 2015
Comments: