Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Wanted Letter by panaro32
def checkio(s):
s = s.lower()
l = list(set((x,s.count(x)) for x in s if x.islower()))
l.sort(key = lambda x: (-x[1],x[0]))
return l[0][0]
April 30, 2014
Comments: