mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
23 lines
349 B
Go
23 lines
349 B
Go
package main
|
|
|
|
func numberOfSubarrays(nums []int, k int) int {
|
|
atMost := func(k int) int {
|
|
subarrays := 0
|
|
|
|
window, start := 0, 0
|
|
for end := range nums {
|
|
window += nums[end] % 2
|
|
|
|
for window > k {
|
|
window -= nums[start] % 2
|
|
start++
|
|
}
|
|
|
|
subarrays += end - start + 1
|
|
}
|
|
|
|
return subarrays
|
|
}
|
|
|
|
return atMost(k) - atMost(k-1)
|
|
}
|