Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
TheMostWantedLetter.c solution in Clear category for The Most Wanted Letter by trudnopodobny
def checkio(text: str) -> str:
text = sorted(text.lower())
letter = text[0]
count = 0
for i in text:
if i.isalpha():
if text.count(i) > count:
letter = i
count = text.count(i)
return letter
Oct. 5, 2018
Comments: