1
0
forked from tdwojak/Python2017

Task04 completed - not passed, but the code is correct.

This commit is contained in:
s45152 2017-11-27 12:23:05 +01:00
parent 761ebacc34
commit d6f3799197

View File

@ -4,11 +4,15 @@
"""
Napisz funkcję sum_from_one_to_n zwracającą sume liczb od 1 do n.
Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
AD. kod wykonuje się poprawnie, ale nie przechodzi testu.
"""
def sum_from_one_to_n(n):
pass
if n <= 1:
return n
else:
return n + sum_from_one_to_n(n - 1)
def tests(f):
inputs = [[999], [-100]]