You are viewing a single comment's thread. Return to all comments →
Python3 Solution:
n = int(input()) s = set(map(int, input().split())) N = int(input()) for i in range(N): command = input().split() if command[0] == "pop": s.pop() elif command[0] == "remove": s.remove(int(command[1])) elif command[0] == "discard": s.discard(int(command[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 →
Python3 Solution: