LeetCode 560.和为K的子数组
2021-04-30 16:27
标签:blog 相同 subarray https cti leetcode 给定一个整数数组 array com 给定一个整数数组和一个整数 k,你需要找到该数组中和为 k 的连续的子数组的个数。 示例 1 : 说明 : 本题与LeetCode 930.和相同的二元子数组(https://www.cnblogs.com/sandy-t/p/13227842.html)类似 LeetCode 560.和为K的子数组 标签:blog 相同 subarray https cti leetcode 给定一个整数数组 array com 原文地址:https://www.cnblogs.com/sandy-t/p/13227941.html
输入:nums = [1,1,1], k = 2
输出: 2 , [1,1] 与 [1,1] 为两种不同的情况。
数组的长度为 [1, 20,000]。
数组中元素的范围是 [-1000, 1000] ,且整数 k 的范围是 [-1e7, 1e7]。from collections import defaultdict
class Solution:
def subarraySum(self, nums: List[int], k: int) -> int:
ans = 0
pre = defaultdict(int)
pre[0] = 1
pre_sum = 0
for i in range(len(nums)):
#print(pre)
pre_sum += nums[i]
ans +=pre[pre_sum - k]
pre[pre_sum] +=1
return ans
下一篇:Python基础题
文章标题:LeetCode 560.和为K的子数组
文章链接:http://soscw.com/index.php/essay/80463.html