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 aquazul
import string
def checkio(text):
#replace this for solution
lt = text.lower()
return max(string.ascii_lowercase, key=lambda c: lt.count(c))
Jan. 14, 2016