fork download
  1. # your code goes here
  2. a=[1,1,2,3,4,5]
  3. b=set(map(lambda num : num +100, a))
  4. print(b)
Success #stdin #stdout 0.04s 9708KB
stdin
Standard input is empty
stdout
{101, 102, 103, 104, 105}