Signature
Test Code
Description
This problem has been deleted.
Submit a Solution
Fastest Solutions
def solution():
# All the actual functionality goes here
pass
# If you require a more specific implementation please supply the
# required test case(s) and I can fill the function body in.
def add(a, b):
return a + b
# Tests:
assert add(1, 2) == 3
assert add(-1, 1) == 0
assert add(0, 0) == 0
New Solutions
def solution():
# All the actual functionality goes here
pass
# If you require a more specific implementation please supply the
# required test case(s) and I can fill the function body in.
def add(a, b):
return a + b
# Tests:
assert add(1, 2) == 3
assert add(-1, 1) == 0
assert add(0, 0) == 0