Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner sort by frequency taking precautions using asccii_lowercases solution in Creative category for The Most Wanted Letter by Stensen
def checkio(t):
a = __import__('re').findall('[a-z]', t.lower())
return sorted(a, key=lambda x: (-a.count(x), __import__('string').ascii_lowercase.index(x)))[0]
Sept. 21, 2020
Comments: