Mid/Senior

Maximum Size Subarray Sum Equals k

Given an integer array nums and an integer k, return the maximum length of a contiguous subarray whose elements sum to k.

If there is no such subarray, return 0.

Your solution should run in O(n) time.

Example 1
Inputnums = [1,-1,5,-2,3], k = 3
Output4
The subarray [1, -1, 5, -2] sums to 3 and has length 4, which is the maximum possible length.
Example 2
Inputnums = [-2,-1,2,1], k = 1
Output2
The subarray [-1, 2] sums to 1 and has length 2, which is the maximum possible length.

Constraints

  • 1 <= nums.length <= 2 * 10^5
  • -10^4 <= nums[i] <= 10^4
  • -10^9 <= k <= 10^9

Asked at 7 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate