Ad

Removing arithmetic symbols.

Code
Diff
  • def add(a, b):
         return sum([a,b])
    • def add(a, b):
    • return a + b
    • return sum([a,b])