2022年10月31日

总结一哈

摘要: ##209. 长度最小的子数组 滑动窗口; 右指针一直移动; 当sum >= target时; 左指针向右移动一格; for(int i = right; i < nums.length; i++) { sum += nums[i]; while(sum >= target) {//attentio 阅读全文

posted @ 2022-10-31 19:11 xtdnn 阅读(14) 评论(0) 推荐(0)

导航