1
0
Fork 0
This commit is contained in:
Tomasz Dwojak 2018-05-12 12:44:31 +02:00
commit 90d279222c
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ def suma(a, b):
"""
Napisz funkcję, która zwraca sumę elementów.
"""
return a + b
return 0
def tests(f):
inputs = [(2, 3), (0, 0), (1, 1)]