mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
dab312e0e7
* bugs fixed * bugs fixed * bugs fixed
28 lines
477 B
Python
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
|
|
"""
|