@@ -548,10 +548,10 @@ var lengthOfLongestSubstring = function (s) {
548548| 题号 | 标题 | 题解 | 标签 | 难度 |
549549| :------: | :------ | :------: | :------ | :------ |
550550| 1343 | [ 大小为 K 且平均值大于等于阈值的子数组数目] ( https://leetcode.com/problems/number-of-sub-arrays-of-size-k-and-average-greater-than-or-equal-to-threshold ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
551- | 643 | [ 子数组最大平均数 I] ( https://leetcode.com/problems/maximum-average-subarray-i ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#15bd66 >Easy</font > |
551+ | 643 | [ 子数组最大平均数 I] ( https://leetcode.com/problems/maximum-average-subarray-i ) | [[ ✓ ]] ( /problem/0643.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#15bd66 >Easy</font > |
552552| 1052 | [ 爱生气的书店老板] ( https://leetcode.com/problems/grumpy-bookstore-owner ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
553553| 1423 | [ 可获得的最大点数] ( https://leetcode.com/problems/maximum-points-you-can-obtain-from-cards ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
554- | 1456 | [ 定长子串中元音的最大数目] ( https://leetcode.com/problems/maximum-number-of-vowels-in-a-substring-of-given-length ) | | [ ` 字符串 ` ] ( /tag/string.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
554+ | 1456 | [ 定长子串中元音的最大数目] ( https://leetcode.com/problems/maximum-number-of-vowels-in-a-substring-of-given-length ) | [[ ✓ ]] ( /problem/1456.md ) | [ ` 字符串 ` ] ( /tag/string.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
555555| 567 | [ 字符串的排列] ( https://leetcode.com/problems/permutation-in-string ) | [[ ✓]] ( /problem/0567.md ) | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
556556| 1100 | [ 长度为 K 的无重复字符子串] ( https://leetcode.com/problems/find-k-length-substrings-with-no-repeated-characters ) | | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
557557| 1151 | [ 最少交换次数来组合所有的 1] ( https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
@@ -575,7 +575,7 @@ var lengthOfLongestSubstring = function (s) {
575575| 718 | [ 最长重复子数组] ( https://leetcode.com/problems/maximum-length-of-repeated-subarray ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) [ ` 动态规划 ` ] ( /tag/dynamic-programming.md ) ` 3+ ` | <font color =#ffb800 >Medium</font > |
576576| 209 | [ 长度最小的子数组] ( https://leetcode.com/problems/minimum-size-subarray-sum ) | [[ ✓]] ( /problem/0209.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
577577| 862 | [ 和至少为 K 的最短子数组] ( https://leetcode.com/problems/shortest-subarray-with-sum-at-least-k ) | | [ ` 队列 ` ] ( /tag/queue.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) ` 4+ ` | <font color =#ff334b >Hard</font > |
578- | 1004 | [ 最大连续1的个数 III] ( https://leetcode.com/problems/max-consecutive-ones-iii ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
578+ | 1004 | [ 最大连续1的个数 III] ( https://leetcode.com/problems/max-consecutive-ones-iii ) | [[ ✓ ]] ( /problem/1004.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > |
579579| 1658 | [ 将 x 减到 0 的最小操作数] ( https://leetcode.com/problems/minimum-operations-to-reduce-x-to-zero ) | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) ` 2+ ` | <font color =#ffb800 >Medium</font > |
580580| 424 | [ 替换后的最长重复字符] ( https://leetcode.com/problems/longest-repeating-character-replacement ) | | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
581581| 3 | [ 无重复字符的最长子串] ( https://leetcode.com/problems/longest-substring-without-repeating-characters ) | [[ ✓]] ( /problem/0003.md ) | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) [ ` 滑动窗口 ` ] ( /tag/sliding-window.md ) | <font color =#ffb800 >Medium</font > |
0 commit comments