Set .discard(), .remove() & .pop()

  • + 0 comments
    n = int(input())
    s = set(map(int, input().split()))
    N = int(input())
    for _ in range (N):
        command= input().split()
        if len(command) == 1:
           getattr(s, command[0])() 
        else:
            getattr(s, command[0])(int(command[1]))  
    print(sum(s))