1
0
forked from tdwojak/Python2017

changed files

This commit is contained in:
s45156 2017-11-19 14:58:36 +01:00
parent d5755b6965
commit 9de284e666
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ która zawiera tylko elementy z list o parzystych indeksach.
"""
def even_elements(lista):
pass
return lista[::2]
def tests(f):

View File

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