Python/maths/abs_min.py
Christian Clauss 93fdc9f2a1 Travis CI: Add pytest --doctest-modules maths (#1020)
* Travis CI: Add pytest --doctest-modules maths

* Update lucas_series.py

* Update lucas_series.py
2019-07-21 11:46:28 +05:30

24 lines
325 B
Python

from .abs import abs_val
def absMin(x):
"""
>>> absMin([0,5,1,11])
0
>>> absMin([3,-10,-2])
-2
"""
j = x[0]
for i in x:
if abs_val(i) < abs_val(j):
j = i
return j
def main():
a = [-3,-1,2,-11]
print(absMin(a)) # = -1
if __name__ == '__main__':
main()