Gary
0
Q:

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

n=int(input())
s=set(map(int,input().split()))
N=int(input())
for i in range(N):
  command=input().split()
  if command[0]=="remove":
  	s.remove(int(command[1]))
  elif command[0]=="discard":
    s.discard(int(command[1]))
  else:
    s.pop()
print(sum(s))
    
  
0

New to Communities?

Join the community