LeetCode 992. Subarrays with K Different Integers(K 个不同整数的子数组) 滑动窗口/hard1.Description2.Example3.Solution
文章目录1.Description2.Example3.Solution1.Description给定一个正整数数组 A,如果 A 的某个子数组中不同整数的个数恰好为 K,则称 A 的这个连续、不一定不同的子数组为好子数组。(例如,[1,2,3,1,2] 中有 3 个不同的整数:1,2,以及 3。)返回 A 中好子数组的数目。2.Example输入:A = [1,2,1,2,3], K = 2输出:7解释:恰好由 2 个不同整数组成的子数组:[1,2], [2,1], [1,2], [2