Python/Maths/absMax.py
wanderer dab312e0e7 bugs fixed (#623)
* bugs fixed

* bugs fixed

* bugs fixed
2018-12-04 18:32:53 +01:00

28 lines
477 B
Python

from Maths.abs import absVal
def absMax(x):
"""
#>>>absMax([0,5,1,11])
11
>>absMax([3,-10,-2])
-10
"""
j =x[0]
for i in x:
if absVal(i) > absVal(j):
j = i
return j
#BUG: i is apparently a list, TypeError: '<' not supported between instances of 'list' and 'int' in absVal
#BUG fix
def main():
a = [-13, 2, -11, -12]
print(absMax(a)) # = -13
if __name__ == '__main__':
main()
"""
print abs Max
"""