You are viewing a single comment's thread. Return to all comments →
` import sys
from collections import Counter
words = sys.stdin.read().splitlines()[1:]
counter = Counter(words)
print(len(counter))
print( *counter.values())
`
Seems like cookies are disabled on this browser, please enable them to open this website
Word Order
You are viewing a single comment's thread. Return to all comments →
` import sys
from collections import Counter
words = sys.stdin.read().splitlines()[1:]
counter = Counter(words)
print(len(counter))
print( *counter.values())
`