Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/maximum-size-subarray-sum-equals-k
Given an integer array nums
and an integer k
, return the maximum length of a subarray that sums to k
. If there isn't one, return 0
instead.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 2 * 105
-104 <= nums[i] <= 104
-109 <= k <= 109
range sum, current sum - old sum = k. Why 2 pointers fail here? because cannot decide how to move the pointers.