1
0
forked from tdwojak/Python2018

test_task done

This commit is contained in:
s441403 2018-05-13 08:46:56 +02:00
parent 41207a9a35
commit e53fc85078

View File

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