Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
【ツ】 solution in Clear category for The Most Wanted Letter by vmiimu
from collections import Counter
def checkio(words):
counts = Counter(c for c in words.lower() if c.isalpha()).most_common()
return sorted([x for x in counts if x[1] == counts[0][1]])[0][0]
Dec. 27, 2018
Comments: