Skip to content

Commit 962d71c

Browse files
committed
更新分类题解列表
1 parent 2315491 commit 962d71c

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Assets/Origins/Categories-List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
#### 固定长度窗口题目
4848

49-
###### 1343. 大小为 K 且平均值大于等于阈值的子数组数目、0239. 滑动窗口最大值、0480. 滑动窗口中位数
49+
###### 1343. 大小为 K 且平均值大于等于阈值的子数组数目、0239. 滑动窗口最大值、0480. 滑动窗口中位数
5050

5151
#### 不定长度窗口题目
5252

Assets/Scripts/create_solutions_list.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ def merge_readme_file(solotions_output_path, readme_head_path, readme_catalogue_
166166

167167
# 根据题解目录, 题目分类原始列表目录,生成分类题解,并将整体保存到 categories_list_path
168168
def gen_categories_list(solotions_path, categories_origin_list_path, categories_list_path):
169+
169170
f = open(categories_origin_list_path)
170171
lines = f.readlines()
171172
category_h2 = None

Contents/00.Introduction/05.Categories-List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150

151151
| 题号 | 标题 | 题解 | 标签 | 难度 |
152152
| :------ | :------ | :------ | :------ | :------ |
153-
| 1343 | 大小为 K 且平均值大于等于阈值的子数组数目 | | | |
153+
| 1343 | [大小为 K 且平均值大于等于阈值的子数组数目](https://leetcode-cn.com/problems/number-of-sub-arrays-of-size-k-and-average-greater-than-or-equal-to-threshold/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1343.%20%E5%A4%A7%E5%B0%8F%E4%B8%BA%20K%20%E4%B8%94%E5%B9%B3%E5%9D%87%E5%80%BC%E5%A4%A7%E4%BA%8E%E7%AD%89%E4%BA%8E%E9%98%88%E5%80%BC%E7%9A%84%E5%AD%90%E6%95%B0%E7%BB%84%E6%95%B0%E7%9B%AE.md) | 数组、滑动窗口 | 中等 |
154154
| 0239 | [滑动窗口最大值](https://leetcode-cn.com/problems/sliding-window-maximum/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0239.%20%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3%E6%9C%80%E5%A4%A7%E5%80%BC.md) | 队列,数组、滑动窗口、单调队列、堆(优先队列) | 困难 |
155155
| 0480 | 滑动窗口中位数 | | | |
156156

Contents/01.Array/05.Array-Sliding-Window/10.Array-Sliding-Window-List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| 题号 | 标题 | 题解 | 标签 | 难度 |
66
| :------ | :------ | :------ | :------ | :------ |
7-
| 1343 | 大小为 K 且平均值大于等于阈值的子数组数目 | | | |
7+
| 1343 | [大小为 K 且平均值大于等于阈值的子数组数目](https://leetcode-cn.com/problems/number-of-sub-arrays-of-size-k-and-average-greater-than-or-equal-to-threshold/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1343.%20%E5%A4%A7%E5%B0%8F%E4%B8%BA%20K%20%E4%B8%94%E5%B9%B3%E5%9D%87%E5%80%BC%E5%A4%A7%E4%BA%8E%E7%AD%89%E4%BA%8E%E9%98%88%E5%80%BC%E7%9A%84%E5%AD%90%E6%95%B0%E7%BB%84%E6%95%B0%E7%9B%AE.md) | 数组、滑动窗口 | 中等 |
88
| 0239 | [滑动窗口最大值](https://leetcode-cn.com/problems/sliding-window-maximum/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0239.%20%E6%BB%91%E5%8A%A8%E7%AA%97%E5%8F%A3%E6%9C%80%E5%A4%A7%E5%80%BC.md) | 队列,数组、滑动窗口、单调队列、堆(优先队列) | 困难 |
99
| 0480 | 滑动窗口中位数 | | | |
1010

0 commit comments

Comments
 (0)