Home
Related Problems
Subarray Sum Equals K
Medium
Arrays & Hashing
•
marc30
Given an array of integers nums and an integer k, return the total number of subarrays whose sum equals to k. A subarray is a contiguous non-empty sequence of elements within an array.
Constraints:
1 <= nums.length <= 2 * 104
-1000 <= nums[i] <= 1000
-107 <= k <= 107
Show Test Cases
Show Solution