You are viewing a single comment's thread. Return to all comments →
from collections import defaultdict
dic=defaultdict(int)
for i in range(int(input())):
dic[input()]+=1
print(len(dic))
print(' '.join([ str(dic[x]) for x in dic.keys() ]))
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Word Order
You are viewing a single comment's thread. Return to all comments →
from collections import defaultdict
dic=defaultdict(int)
for i in range(int(input())):
print(len(dic))
print(' '.join([ str(dic[x]) for x in dic.keys() ]))