Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Most Wanted Letter solution in Clear category for The Most Wanted Letter by CyrylWilczek
def checkio(text):
text = text.lower()
times = 0
for char in text:
if char.isalpha():
if text.count(char) > times:
times = text.count(char)
answer = char
elif text.count(char) == times:
if char < answer:
answer = char
return answer
Dec. 9, 2017