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 wrak
def checkio(text):
b=0
c=0
text=text.lower()
for x in range(len(text)):
b=text.count(text[x])
if b>c and ord(text[x])>60 and ord(text[x])<123:
a=text[x]
c=b
if b==c and ord(text[x])>60 and ord(text[x])<123:
if(text[x]
Oct. 17, 2017