TestDrivenCode.com
0

deleted

by Deleted User
Signature
Test Code
Description

This problem has been deleted.

Submit a Solution

Fastest Solutions

0
Solution by Anonymous User #34 (0.1 seconds)
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.
0
Solution by Anonymous User #21 (0.1 seconds)
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

0
Solution by Anonymous User #34 (0.1 seconds)
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.
0
Solution by Anonymous User #21 (0.1 seconds)
def add(a, b): return a + b # Tests: assert add(1, 2) == 3 assert add(-1, 1) == 0 assert add(0, 0) == 0