Maximum Size Subarray Sum Equals k
Input:
nums
=
[1, -1, 5, -2, 3]
,
k
=
3
Output:
4
Explanation:
The subarray
[1, -1, 5, -2]
sums to 3 and is the longest.Input:
nums
=
[-2, -1, 2, 1]
,
k
=
1
Output:
2
Explanation:
The subarray
[-1, 2]
sums to 1 and is the longest.Last updated