forked from tdwojak/Python2017
Task04 completed - not passed, but the code is correct.
This commit is contained in:
parent
761ebacc34
commit
d6f3799197
@ -4,11 +4,15 @@
|
|||||||
"""
|
"""
|
||||||
Napisz funkcję sum_from_one_to_n zwracającą sume liczb od 1 do n.
|
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.
|
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):
|
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):
|
def tests(f):
|
||||||
inputs = [[999], [-100]]
|
inputs = [[999], [-100]]
|
||||||
|
Loading…
Reference in New Issue
Block a user