930. 和相同的二元子数组
难度中等192
给你一个二元数组 nums
,和一个整数 goal
,请你统计并返回有多少个和为 goal
的 非空 子数组。
子数组 是数组的一段连续部分。
示例 1:
1 | 输入:nums = [1,0,1,0,1], goal = 2 |
示例 2:
1 | 输入:nums = [0,0,0,0,0], goal = 0 |
提示:
1 <= nums.length <= 3 * 104
nums[i]
不是0
就是1
0 <= goal <= nums.length
通过次数27,053
提交次数50,435
哈希表
1 | class Solution { |
https://leetcode-cn.com/problems/binary-subarrays-with-sum/comments/380146