You are viewing a single comment's thread. Return to all comments →
n = int(input()) s = set(map(int, input().split())) ctr = int(input())
for _ in range(ctr): actions = input().split() method = getattr(s, actions[0])
if len(actions) == 1: method() else: method(int(actions[1]))
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 →
n = int(input()) s = set(map(int, input().split())) ctr = int(input())
for _ in range(ctr): actions = input().split() method = getattr(s, actions[0])
print(sum(s))