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 _ in range(N): inp = list(input().split()) if len(inp) == 2: getattr(s, inp[0])(int(inp[1])) else: getattr(s, inp[0])() print(sum(s))
Seems like cookies are disabled on this browser, please enable them to open this website
Set .discard(), .remove() & .pop()
You are viewing a single comment's thread. Return to all comments →