You are viewing a single comment's thread. Return to all comments →
if __name__ == '__main__': size =int(input()) room_num = list(map(int,input().split())) set_rn = set(room_num) for i in set_rn: room_num.remove(i) set_rn.symmetric_difference_update(room_num) print(int("".join(str(i) for i in set_rn)))
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 →