Zaktualizuj 'labs02/test_task.py'

This commit is contained in:
Miłosz Maliszewski 2018-06-13 17:41:33 +00:00
parent 66ca93cd4c
commit 52ec69475d

View File

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