forked from tdwojak/Python2018
34 lines
695 B
Python
34 lines
695 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
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.
|
|
"""
|
|
|
|
def sum_from_one_to_n(n):
|
|
suma = 1
|
|
i = 1
|
|
if n < 1:
|
|
return 0
|
|
else:
|
|
while i < n:
|
|
i += 1
|
|
suma += i
|
|
|
|
return suma
|
|
|
|
|
|
def tests(f):
|
|
inputs = [[999], [-100]]
|
|
outputs = [499500, 0]
|
|
|
|
for input, output in zip(inputs, outputs):
|
|
if f(*input) != output:
|
|
return "ERROR: {}!={}".format(f(*input), output)
|
|
break
|
|
return "TESTS PASSED"
|
|
|
|
if __name__ == "__main__":
|
|
print(tests(sum_from_one_to_n))
|