1
0
forked from tdwojak/Python2018

rozwiazanie zadania test

This commit is contained in:
s434579 2018-05-13 08:46:11 +02:00
parent 41207a9a35
commit 44cf003175

6
labs02/test_task.py Executable file → Normal file
View File

@ -3,10 +3,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)]