Problem Description
A = [1, 2, 3, 4, -10]Input 2:
A = [-2, 1, -3, 4, -1, 2, 1, -5, 4]
10Output 2:
6
The subarray [1, 2, 3, 4] has the maximum possible sum of 10.Explanation 2:
The subarray [4,-1,2,1] has the maximum possible sum of 6.
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.