题目
Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k.
Example 1:
1 | Input:nums = [1,1,1], k = 2 |
Note:
- The length of the array is in range [1, 20,000].
- The range of numbers in the array is [-1000, 1000] and the range of the integer k is [-1e7, 1e7].
思路
1 | k=sum(i,j)=sum(0,j)-sum(0,i), where sum(i,j) represents the sum of all the elements from index i to j-1. |
问题转化为:
1 | for each j:how many i < j satisfies sum(0,i) = sum(0,j) - k |
可使用一个HashMap:
1 | key:prefixSum value |
代码
1 | class Solution(object): |