You are viewing a single comment's thread. Return to all comments →
Hi. Here my solution to this problem:
from collections import Counter palabras = [input() for i in range(int(input()))] verify = Counter(palabras) print(len(verify)) print(*verify.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 →
Hi. Here my solution to this problem: