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 Roman_Turaj
import re
def checkio(text):
max = 0
text = text.lower()
result = text[0]
for i in text:
if i.isalpha():
x = text.count(i)
if x > max:
result = i
max = x
elif x==max:
if i
Nov. 5, 2017