Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sorted (-count,char) solution in Clear category for The Most Wanted Letter by m.kurapov
def checkio(text: str) -> str:
tl = text.lower()
return sorted([(-tl.count(c),c) for c in set(tl) if 'a'<=c<='z'])[0][1]
March 18, 2020
Comments: