Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner collections.Counter solution in Creative category for The Most Wanted Letter by Stensen
checkio = lambda t: sorted(__import__('collections').Counter(__import__('re').findall('[a-z]', t.lower())).most_common(), key=lambda x: (-x[1], ord(x[0])))[0][0]
Sept. 22, 2020
Comments: