1343. Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold
1343. Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold
Description
Given an array of integers arr
and two integers k
and threshold
, return the number of sub-arrays of size k
and average greater than or equal to threshold
.
Example 1:
1 | Input: arr = [2,2,2,2,5,5,5,8], k = 3, threshold = 4 |
Example 2:
1 | Input: arr = [11,13,17,23,29,31,7,5,2,3], k = 3, threshold = 5 |
Constraints:
1 <= arr.length <= 10^5
1 <= arr[i] <= 10^4
1 <= k <= arr.length
0 <= threshold <= 10^4
Hints/Notes
- 2024/10/04
- sliding window
- No solution from 0x3F
Solution
Language: C++
1 | class Solution { |