You are viewing a single comment's thread. Return to all comments →
k = int(input()) room_numbers = input().split() unique_room_numbers = set(room_numbers) for num in unique_room_numbers: room_numbers.remove(num) if(num not in room_numbers): print(int(num)) 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