I've Been Everywhere, Man

This commit is contained in:
2023-06-24 21:32:35 +02:00
parent c963fa5d44
commit 01ddf465e3

10
everywhere.py Normal file
View File

@@ -0,0 +1,10 @@
t = int(input())
for ti in range(t):
n = int(input())
cities = set()
for ni in range(n):
cities.add(input().strip())
print(len(cities))