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 Happiness
def checkio(text):
ltext = [ch for ch in text.lower() if ch.isalpha()]
maxCh = ''
maxN = 0
for ch in sorted(ltext):
if ltext.count(ch) > maxN:
maxCh, maxN = ch, ltext.count(ch)
return maxCh
Feb. 13, 2015
Comments: