mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
dab312e0e7
* bugs fixed * bugs fixed * bugs fixed
20 lines
324 B
Python
20 lines
324 B
Python
from Maths.abs import absVal
|
|
def absMin(x):
|
|
"""
|
|
# >>>absMin([0,5,1,11])
|
|
0
|
|
# >>absMin([3,-10,-2])
|
|
-2
|
|
"""
|
|
j = x[0]
|
|
for i in x:
|
|
if absVal(i) < absVal(j):
|
|
j = i
|
|
return j
|
|
|
|
def main():
|
|
a = [-3,-1,2,-11]
|
|
print(absMin(a)) # = -1
|
|
|
|
if __name__ == '__main__':
|
|
main() |