You are viewing a single comment's thread. Return to all comments →
K = int(input()) room_numbers = [*map(int, input().split())] unique_rm = set(room_numbers) for room_number in unique_rm: room_numbers.remove(room_number) if(room_number not in room_numbers): print(room_number) break
Seems like cookies are disabled on this browser, please enable them to open this website
The Captain's Room
You are viewing a single comment's thread. Return to all comments →
For Python3 Platform