Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The Most Wanted Letter solution in Clear category for The Most Wanted Letter by ShamilTim
import re
from collections import Counter
def checkio(text: str) -> str:
return Counter(
"".join(sorted(re.sub("[^a-z]", "", text.lower())))
).most_common(1)[0][0]
Aug. 27, 2021
Comments: