有一类题,看起来很像同向双指针,但是不完全是,一般都是求exactly K 同向双指针教会了我们如何求at most K, 现在我们要求exactly K. 那么我们可以转换为 exactly K = atMost(K) - atMost(K - 1); 这类题有好多,如下: Subarrays with K Different Integers 思路:跟 Substrings with e
209. 长度最小的子数组 这里的更新结果就题来定 class Solution {public int minSubArrayLen(int target, int[] nums) {int sum = 0;int len = 0;int f = 0;for(int left = 0, right = 0; right < nums.length;){//求和sum += nums[ri