Subarrays with K Different Integers
Given an array A
of positive integers, call a (contiguous, not necessarily distinct) subarray of A
good if the number of different integers in that subarray is exactly K
.
(For example, [1,2,3,1,2]
has 3
different integers: 1
, 2
, and 3
.)
Return the number of good subarrays of A
.
Example 1:
Example 2:
Note:
1 <= A.length <= 20000
1 <= A[i] <= A.length
1 <= K <= A.length
PreviousLongest Substring with At Most K Distinct CharactersNextNumber of Substrings Containing All Three Characters
Last updated