325. Maximum Size Subarray Sum Equals k
325. Maximum Size Subarray Sum Equals k
Description
Difficulty: Medium
Related Topics: Array, Hash Table, Prefix Sum
Given an integer array nums
and an integer k
, return the maximum length of a subarray that sums to k
. If there is not one, return 0
instead.
Example 1:
1 | Input: nums = [1,-1,5,-2,3], k = 3 |
Example 2:
1 | Input: nums = [-2,-1,2,1], k = 1 |
Constraints:
- 1 <= nums.length <= 2 * 105
- -104 <= nums[i] <= 104
- -109 <= k <= 109
Hints/Notes
- preSum + map
Solution
Language: C++
1 | class Solution { |