You are viewing a single comment's thread. Return to all comments →
from collections import Counter
if name == 'main': s = sorted(input()) z= Counter(s) z=Counter(s).most_common(3) for x in z: print(*x)
Seems like cookies are disabled on this browser, please enable them to open this website
Company Logo
You are viewing a single comment's thread. Return to all comments →
from collections import Counter
if name == 'main': s = sorted(input()) z= Counter(s) z=Counter(s).most_common(3) for x in z: print(*x)