You are viewing a single comment's thread. Return to all comments →
n = int(input()) s = set(map(int, input().split())) cn = int(input()) for i in range(cn): command, *number = input().split() if number: number = int(number[0]) eval(f"s.{command}(number)") else: eval(f"s.{command}()") 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 →