Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for The Most Wanted Letter by mikra
import re
def checkio(data):
regex = re.compile('[a-z]+')
data = ''.join(regex.findall(data.lower()))
return max(data, key=lambda c: (data.count(c), -ord(c)))
April 6, 2019
Comments: