0930. Binary Subarrays With Sum
https://leetcode.com/problems/binary-subarrays-with-sum
Description
Given a binary array nums
and an integer goal
, return the number of non-empty subarrays with a sum goal
.
A subarray is a contiguous part of the array.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 3 * 104
nums[i]
is either0
or1
.0 <= goal <= nums.length
ac
Last updated