其他分享
首页 > 其他分享> > LeeCode_560. 和为 K 的子数组(map+前缀和)

LeeCode_560. 和为 K 的子数组(map+前缀和)

作者:互联网

一、介绍

1.题目描述

题目链接:

https://leetcode-cn.com/problems/subarray-sum-equals-k/

给你一个整数数组 nums 和一个整数 k ,请你统计并返回该数组中和为 k 的连续子数组的个数。

2.测试样例

[1,1,1]
2
# 2

[1,2,3]
3
# 2

[0,0,0,0,0]
0
# 15

二、题解

1、map+前缀和

标签:pre,map,前缀,560,个数,int,LeeCode,num
来源: https://blog.csdn.net/Netceor/article/details/120688600