Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Most wanted letter solution in Clear category for The Most Wanted Letter by makstheimba
def checkio(text):
alphabet = "abcdefghijklmnopqrstuvwxyz"
frequency = 0
text = text.lower()
for letter in alphabet:
if text.count(letter)>frequency:
frequency = text.count(letter)
most_wanted = letter
return most_wanted
Feb. 15, 2015
Comments: