11 lines
237 B
Python
11 lines
237 B
Python
def test_case(i):
|
|
_ = int(input())
|
|
cs = list(map(int, input().split()))
|
|
for c in cs:
|
|
if cs.count(c) == 1:
|
|
print(f"Case #{i+1}: {c}")
|
|
return
|
|
|
|
n = int(input())
|
|
for i in range(n):
|
|
test_case(i) |