Find the maximum absolute subarray sum

Find the maximum absolute subarray sum :
Example [4, -6, 2, -7, 5, 4] --> Output is :11 (since subarray -6,2,-7 if added the absolute sum is 11)

Comments (2)