Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1pass solution in Clear category for The Most Wanted Letter by veky
def checkio(text):
import collections
freqs = collections.Counter(filter(str.isalpha, text.lower()))
mode = max(freqs.values())
return min(letter for letter, freq in freqs.items() if freq == mode)
May 5, 2016
Comments: