fork download
  1. f = lambda x:[x[0]*2-n for n in x]
  2.  
  3. print(f([32, 18, 25, 192, 199]))
Success #stdin #stdout 0.01s 9992KB
stdin
Standard input is empty
stdout
[32, 46, 39, -128, -135]