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