import re
from collections import Counter
def checkio(text: str) -> str:
count = Counter(re.findall("[a-z]", text.lower()))
maxmm = max(count, key=count.get)
return maxmm
Created at: 2018/12/14 13:19; Updated at: 2018/12/17 15:03
The question is resolved.