Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for The Most Wanted Letter by Kurush
# migrated from python 2.7
import string
def checkio(text):
text = text.lower()
Alphabet = list(string.lowercase)
Occured = {}
for Letter in Alphabet:
Occured[Letter] = 0
for Letter in text:
if Letter in Alphabet:
Occured[Letter] += 1
MaxOccured = 0
MaxLetters = []
for Letter in Alphabet:
if Occured[Letter] > MaxOccured:
MaxOccured = Occured[Letter]
MaxLetters = []
if Occured[Letter] == MaxOccured:
MaxLetters.append(Letter)
return sorted(MaxLetters)[0]
#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
assert checkio("Hello World!") == "l", "Hello test"
assert checkio("How do you do?") == "o", "O is most wanted"
assert checkio("One") == "e", "All letter only once."
Sept. 30, 2013