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 blabaster
def checkio(s):
s = s.lower()
return min((-s.count(a), a) for a in s if a.isalpha())[1]
July 26, 2014