Skip to content

Commit 3941413

Browse files
committed
更新题解列表
1 parent c1c0923 commit 3941413

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Assets/Scripts/create_solutions_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def merge_readme_file(solotions_output_path, readme_head_path, readme_catalogue_
164164
if len(catalogue_list_lines) > 0:
165165
catalogue_list_title = catalogue_list_lines[0].strip('\n')
166166
catalogue_list_title = '## [' + catalogue_list_title + '](./Contents/00.Introduction/04.Solutions-List.md)'
167-
catalogue_list_title = catalogue_list_title.replace('# LeetCode 题解', '10. LeetCode 题解')
167+
catalogue_list_title = catalogue_list_title.replace('# LeetCode 题解', '11. LeetCode 题解')
168168
readme_file.writelines(catalogue_list_title)
169169
catalogue_list_file.close()
170170

Contents/00.Introduction/04.Solutions-List.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# LeetCode 题解(已完成 670 道)
1+
# LeetCode 题解(已完成 671 道)
22

33
| 题号 | 标题 | 题解 | 标签 | 难度 |
44
| :------ | :------ | :------ | :------ | :------ |
@@ -373,6 +373,7 @@
373373
| 0801 | [使序列递增的最小交换次数](https://leetcode-cn.com/problems/minimum-swaps-to-make-sequences-increasing/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0801.%20%E4%BD%BF%E5%BA%8F%E5%88%97%E9%80%92%E5%A2%9E%E7%9A%84%E6%9C%80%E5%B0%8F%E4%BA%A4%E6%8D%A2%E6%AC%A1%E6%95%B0.md) | 动态规划 | 中等 |
374374
| 0802 | [找到最终的安全状态](https://leetcode-cn.com/problems/find-eventual-safe-states/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0802.%20%E6%89%BE%E5%88%B0%E6%9C%80%E7%BB%88%E7%9A%84%E5%AE%89%E5%85%A8%E7%8A%B6%E6%80%81.md) | 深度优先搜索、广度优先搜索、图、拓扑排序 | 中等 |
375375
| 0803 | [打砖块](https://leetcode-cn.com/problems/bricks-falling-when-hit/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0803.%20%E6%89%93%E7%A0%96%E5%9D%97.md) | 并查集、数组、矩阵 | 困难 |
376+
| 0811 | [子域名访问计数](https://leetcode-cn.com/problems/subdomain-visit-count/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0811.%20%E5%AD%90%E5%9F%9F%E5%90%8D%E8%AE%BF%E9%97%AE%E8%AE%A1%E6%95%B0.md) | 数组、哈希表、字符串、计数 | 中等 |
376377
| 0814 | [二叉树剪枝](https://leetcode-cn.com/problems/binary-tree-pruning/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0814.%20%E4%BA%8C%E5%8F%89%E6%A0%91%E5%89%AA%E6%9E%9D.md) | 树、深度优先搜索、二叉树 | 中等 |
377378
| 0820 | [单词的压缩编码](https://leetcode-cn.com/problems/short-encoding-of-words/) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0820.%20%E5%8D%95%E8%AF%8D%E7%9A%84%E5%8E%8B%E7%BC%A9%E7%BC%96%E7%A0%81.md) | 字典树、数组、哈希表、字符串 | 中等 |
378379
| 0832 | [翻转图像](https://leetcode-cn.com/problems/flipping-an-image) | [Python](https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0832.%20%E7%BF%BB%E8%BD%AC%E5%9B%BE%E5%83%8F.md) | 数组、双指针、矩阵、模拟 | 简单 |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,4 @@
222222
- [动态规划知识](./Contents/10.Dynamic-Programming/01.Dynamic-Programming.md)
223223
- [动态规划题目](./Contents/10.Dynamic-Programming/02.Dynamic-Programming-List.md)
224224

225-
## [10. LeetCode 题解(已完成 670 道)](./Contents/00.Introduction/04.Solutions-List.md)
225+
## [11. LeetCode 题解(已完成 671 道)](./Contents/00.Introduction/04.Solutions-List.md)

0 commit comments

Comments
 (0)