Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Creative category for The Most Wanted Letter by Tinus_Trotyl
def checkio(text):
r = {c: text.lower().count(chr(c)) for c in range(97, 123)}
return chr(max(r, key=r.__getitem__ ))
Aug. 18, 2017
Comments: