summaryrefslogtreecommitdiff
path: root/progs/a739.py
blob: 0bffcccb9d0c9400af12840a3cd0011fa1d15a3e (plain)
1
2
3
4
5
def remove_replica(test_tup):
  temp = set()
  res = tuple(ele if ele not in temp and not temp.add(ele) 
				else 'MSP' for ele in test_tup)
  return (res)