Light Mode
Dark Mode
Not everything work. 10 times I changed approach)

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: Dec. 14, 2018, 1:19 p.m.
Updated: Dec. 17, 2018, 3:03 p.m.
0
8
User avatar
Kuznetsov_Mihail