Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Most Wanted Letter by Juge_Ti
def checkio(s):
s = s.lower()
d = dict(zip(s, map(lambda x: s.count(x) * x.isalpha(), s)))
return min(x for x in d if d[x] == max(d.values()))
Sept. 17, 2013
Comments: