Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Wanted Letter by Vesemir
def checkio(text):
text = text.lower()
text = sorted(text)
best_freq = 0
best_char = ""
for c in text:
if text.count(c) > best_freq and c.isalpha():
best_freq = text.count(c)
best_char = c
return best_char
April 27, 2015
Comments: