Off-by-one on range boundaries
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Break down a hard problem into reliable checkpoints, edge-case handling, and complexity trade-offs.
Given an integer array nums and an integer k, return the number of good subarrays of nums.
A good array is an array where the number of different integers in that array is exactly k.
[1,2,3,1,2] has 3 different integers: 1, 2, and 3.A subarray is a contiguous part of an array.
Example 1:
Input: nums = [1,2,1,2,3], k = 2 Output: 7 Explanation: Subarrays formed with exactly 2 different integers: [1,2], [2,1], [1,2], [2,3], [1,2,1], [2,1,2], [1,2,1,2]
Example 2:
Input: nums = [1,2,1,3,4], k = 3 Output: 3 Explanation: Subarrays formed with exactly 3 different integers: [1,2,1,3], [2,1,3], [1,3,4].
Constraints:
1 <= nums.length <= 2 * 1041 <= nums[i], k <= nums.lengthProblem summary: Given an integer array nums and an integer k, return the number of good subarrays of nums. A good array is an array where the number of different integers in that array is exactly k. For example, [1,2,3,1,2] has 3 different integers: 1, 2, and 3. A subarray is a contiguous part of an array.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Array · Hash Map · Sliding Window
[1,2,1,2,3] 2
[1,2,1,3,4] 3
longest-substring-without-repeating-characters)longest-substring-with-at-most-two-distinct-characters)longest-substring-with-at-most-k-distinct-characters)count-vowel-substrings-of-a-string)number-of-unique-flavors-after-sharing-k-candies)Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #992: Subarrays with K Different Integers
class Solution {
public int subarraysWithKDistinct(int[] nums, int k) {
int[] left = f(nums, k);
int[] right = f(nums, k - 1);
int ans = 0;
for (int i = 0; i < nums.length; ++i) {
ans += right[i] - left[i];
}
return ans;
}
private int[] f(int[] nums, int k) {
int n = nums.length;
int[] cnt = new int[n + 1];
int[] pos = new int[n];
int s = 0;
for (int i = 0, j = 0; i < n; ++i) {
if (++cnt[nums[i]] == 1) {
++s;
}
for (; s > k; ++j) {
if (--cnt[nums[j]] == 0) {
--s;
}
}
pos[i] = j;
}
return pos;
}
}
// Accepted solution for LeetCode #992: Subarrays with K Different Integers
func subarraysWithKDistinct(nums []int, k int) (ans int) {
f := func(k int) []int {
n := len(nums)
pos := make([]int, n)
cnt := make([]int, n+1)
s, j := 0, 0
for i, x := range nums {
cnt[x]++
if cnt[x] == 1 {
s++
}
for ; s > k; j++ {
cnt[nums[j]]--
if cnt[nums[j]] == 0 {
s--
}
}
pos[i] = j
}
return pos
}
left, right := f(k), f(k-1)
for i := range left {
ans += right[i] - left[i]
}
return
}
# Accepted solution for LeetCode #992: Subarrays with K Different Integers
class Solution:
def subarraysWithKDistinct(self, nums: List[int], k: int) -> int:
def f(k):
pos = [0] * len(nums)
cnt = Counter()
j = 0
for i, x in enumerate(nums):
cnt[x] += 1
while len(cnt) > k:
cnt[nums[j]] -= 1
if cnt[nums[j]] == 0:
cnt.pop(nums[j])
j += 1
pos[i] = j
return pos
return sum(a - b for a, b in zip(f(k - 1), f(k)))
// Accepted solution for LeetCode #992: Subarrays with K Different Integers
struct Solution;
use std::collections::HashMap;
impl Solution {
fn subarrays_with_k_distinct(a: Vec<i32>, k: i32) -> i32 {
(Self::at_most(&a, k) - Self::at_most(&a, k - 1)) as i32
}
fn at_most(a: &[i32], mut k: i32) -> usize {
let n = a.len();
let mut hm: HashMap<i32, i32> = HashMap::new();
let mut j = 0;
let mut res = 0;
for i in 0..n {
let count = hm.entry(a[i]).or_default();
if *count == 0 {
k -= 1;
}
*count += 1;
while k < 0 {
let count = hm.entry(a[j]).or_default();
*count -= 1;
if *count == 0 {
k += 1;
}
j += 1;
}
res += i - j + 1;
}
res
}
}
#[test]
fn test() {
let a = vec![1, 2, 1, 2, 3];
let k = 2;
let res = 7;
assert_eq!(Solution::subarrays_with_k_distinct(a, k), res);
let a = vec![1, 2, 1, 3, 4];
let k = 3;
let res = 3;
assert_eq!(Solution::subarrays_with_k_distinct(a, k), res);
}
// Accepted solution for LeetCode #992: Subarrays with K Different Integers
// Auto-generated TypeScript example from java.
function exampleSolution(): void {
}
// Reference (java):
// // Accepted solution for LeetCode #992: Subarrays with K Different Integers
// class Solution {
// public int subarraysWithKDistinct(int[] nums, int k) {
// int[] left = f(nums, k);
// int[] right = f(nums, k - 1);
// int ans = 0;
// for (int i = 0; i < nums.length; ++i) {
// ans += right[i] - left[i];
// }
// return ans;
// }
//
// private int[] f(int[] nums, int k) {
// int n = nums.length;
// int[] cnt = new int[n + 1];
// int[] pos = new int[n];
// int s = 0;
// for (int i = 0, j = 0; i < n; ++i) {
// if (++cnt[nums[i]] == 1) {
// ++s;
// }
// for (; s > k; ++j) {
// if (--cnt[nums[j]] == 0) {
// --s;
// }
// }
// pos[i] = j;
// }
// return pos;
// }
// }
Use this to step through a reusable interview workflow for this problem.
For each starting index, scan the next k elements to compute the window aggregate. There are n−k+1 starting positions, each requiring O(k) work, giving O(n × k) total. No extra space since we recompute from scratch each time.
The window expands and contracts as we scan left to right. Each element enters the window at most once and leaves at most once, giving 2n total operations = O(n). Space depends on what we track inside the window (a hash map of at most k distinct elements, or O(1) for a fixed-size window).
Review these before coding to avoid predictable interview regressions.
Wrong move: Loop endpoints miss first/last candidate.
Usually fails on: Fails on minimal arrays and exact-boundary answers.
Fix: Re-derive loops from inclusive/exclusive ranges before coding.
Wrong move: Zero-count keys stay in map and break distinct/count constraints.
Usually fails on: Window/map size checks are consistently off by one.
Fix: Delete keys when count reaches zero.
Wrong move: Using `if` instead of `while` leaves the window invalid for multiple iterations.
Usually fails on: Over-limit windows stay invalid and produce wrong lengths/counts.
Fix: Shrink in a `while` loop until the invariant is valid again.