forked from tdwojak/Python2017
25 lines
521 B
Python
25 lines
521 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
Napisz funkcję sum_div35(n), która zwraca sumę wszystkich liczb podzielnych
|
||
|
przez 3 lub 5 mniejszych niż n.
|
||
|
"""
|
||
|
|
||
|
def sum_div35(n):
|
||
|
pass
|
||
|
|
||
|
def tests(f):
|
||
|
inputs = [[10], [100], [3845]]
|
||
|
outputs = [23, 2318, 3446403]
|
||
|
|
||
|
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_div35))
|
||
|
|