2348. Number of Zero-Filled Subarrays
2348. Number of Zero-Filled Subarrays
Description
Given an integer array nums
, return the number of subarrays filled with 0
.
A subarray is a contiguous non-empty sequence of elements within an array.
Example 1:
1 | Input: nums = [1,3,0,0,2,0,0,4] |
Example 3:
1 | Input: nums = [2,10,2019] |
Constraints:
1 <= nums.length <= 10^5
-10^9 <= nums[i] <= 10^9
Hints/Notes
- 2025/03/05 Q3
- math
- 0x3Fâs solution
Solution
Language: C++
1 | class Solution { |