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 capback250
import string
def checkio(text):
count = []
result = []
formatt = text.lower()
lets = list(string.ascii_lowercase)
for letter in lets:
count.append(formatt.count(letter))
for letter in lets:
if formatt.count(letter) == max(count):
result += letter
result.sort()
fin = ''.join(result[:1])
return fin
Feb. 9, 2016