Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Most Wanted Letter by UFO665
def checkio(text):
txt = text.lower()
return sorted({txt.count(ch): ch for ch in sorted(txt, reverse=True) if ch.isalpha()}.items())[-1][-1]
Dec. 5, 2015