Class Solution
-
- All Implemented Interfaces:
public final class Solution
2537 - Count the Number of Good Subarrays.
Medium
Given an integer array
nums
and an integerk
, return the number of good subarrays ofnums
.A subarray
arr
is good if it there are at leastk
pairs of indices(i, j)
such thati < j
andarr[i] == arr[j]
.A subarray is a contiguous non-empty sequence of elements within an array.
Example 1:
Input: nums = 1,1,1,1,1, k = 10
Output: 1
Explanation: The only good subarray is the array nums itself.
Example 2:
Input: nums = 3,1,4,3,2,2,4, k = 2
Output: 4
Explanation: There are 4 different good subarrays:
3,1,4,3,2,2 that has 2 pairs.
3,1,4,3,2,2,4 that has 3 pairs.
1,4,3,2,2,4 that has 2 pairs.
4,3,2,2,4 that has 2 pairs.
Constraints:
<code>1 <= nums.length <= 10<sup>5</sup></code>
<code>1 <= numsi, k <= 10<sup>9</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-