Problem Description
Given an array of integers, A of length N, find out the maximum sum sub-array of non negative numbers from A.
The sub-array should be contiguous i.e., a sub-array created by choosing the second and fourth element and skipping the third element is invalid.
Maximum sub-array is defined in terms of the sum of the elements in the sub-array.
Find and return the required subarray.
NOTE:
1 <= N <= 105
-109 <= A[i] <= 109
The first and the only argument of input contains an integer array A, of length N.
Return an array of integers, that is a subarray of A that satisfies the given conditions.
Input 1:
A = [1, 2, 5, -7, 2, 3]
Input 2:
A = [10, -1, 2, 3, -4, 100]
Output 1:
[1, 2, 5]
Output 2:
[100]
Explanation 1:
The two sub-arrays are [1, 2, 5] [2, 3]. The answer is [1, 2, 5] as its sum is larger than [2, 3].
Explanation 2:
The three sub-arrays are [10], [2, 3], [100]. The answer is [100] as its sum is larger than the other two.
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.