You are viewing a single comment's thread. Return to all comments →
n = int(input()) s = set(map(int, input().split())) N = int(input()) for i in range(N): command = input().split() try: if len(command) == 2: getattr(s,command[0])(int(command[1])) else: getattr(s,command[0])() except KeyError: pass except Exception: pass print(sum(s))
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Set .discard(), .remove() & .pop()
You are viewing a single comment's thread. Return to all comments →