K Distinct Window
Given a list of integers nums
and an integer k
, return a list of count of distinct numbers in each window of size k
.
Constraints
1 ≤ k ≤ n ≤ 100,000
wheren
is length ofnums
.
https://binarysearch.com/problems/K-Distinct-Window
Examples
Example 1
Input
- nums =
[1, 1, 2, 2, 3]
- k =
2
Output
- answer =
[1, 2, 1, 2]
Explanation
The windows are [1, 1]
, [1, 2]
, [2, 2]
, and [2, 3]
.
Leave a comment