Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: 报告错误的解法代码
title: "[bug][{这里替换为出错的编程语言}] {这里替换为出错的力扣题目标识符} "
description: "反馈我的刷题全家桶中的错误。"
labels: [ "code bug" ]
body:
- type: markdown
attributes:
value: |
力扣题目标识符是题目 URL 的最后一部分。比如 [https://leetcode.cn/problems/search-a-2d-matrix/](https://leetcode.cn/problems/search-a-2d-matrix/) 这道题标识符就是 `search-a-2d-matrix`。请补全 issue 题目,示例:`[bug][golang] search-a-2d-matrix`.

- type: checkboxes
attributes:
label: 请在提交 bug 之前先搜索
description: >
请先搜索 [issues](https://github.com/labuladong/fucking-algorithm/issues) 确保你提的这个 bug 还没有被提交过。
options:
- label: >
我已经搜索过 [issues](https://github.com/labuladong/fucking-algorithm/issues),没有发现相同的 bug。
required: true
- type: input
attributes:
label: 出错的题目链接
description: |
输入力扣的题目链接
placeholder: 例如 https://leetcode.cn/problems/search-a-2d-matrix/
validations:
required: true
- type: textarea
attributes:
label: 报错信息
description: |
把出错的原因复制粘贴在这里
value: |
<!-- 把报错粘贴到下面的 ``` 块中 -->
```

```
validations:
required: true
- type: checkboxes
attributes:
label: 你是否愿意提交 PR 修复这个 bug?
description: >
PR 规范 [见这里](https://github.com/labuladong/fucking-algorithm/issues/1113),欢迎成为本仓库的 contributor!
options:
- label: 我愿意!
- type: markdown
attributes:
value: "感谢你的支持,[labuladong 的刷题全家桶](https://labuladong.github.io/article/fname.html?fname=全家桶简介) 会因你变得越来越好!"
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!--
如果你是在修复刷题插件的解法代码,请遵循正确的格式,具体要求参见如下链接:

https://github.com/labuladong/fucking-algorithm/issues/1113
-->

<!-- 如果你的 PR 能够关闭某个 issue,那么在 Fixes 关键词后面输入该 issue 的链接 -->

Fixes <!-- issue 链接 -->

我修改的是如下题目的 xx 解法:

<!-- 这里放对应题目的链接,方便验证代码 -->

通过截图如下:

<!-- 把解法代码通过所有测试用例的截图粘贴在这里,用来证明代码的正确性 -->
3 changes: 2 additions & 1 deletion 动态规划系列/LCS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '详解最长公共子序列问题,秒杀三道动态规划题目'
tags: ['动态规划', '子序列']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '详解最长公共子序列问题,秒杀三道动态规划题目'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/动态规划之KMP字符匹配算法.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之KMP字符匹配算法'
tags: ['字符串']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之KMP字符匹配算法'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/动态规划之博弈问题.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之博弈问题'
tags: ['动态规划']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之博弈问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/动态规划之四键键盘.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之四键键盘'
tags: ['动态规划']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之四键键盘'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/动态规划之正则表达.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之正则表达'
tags: ['动态规划', '字符串']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之正则表达'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划设计:最长递增子序列'
tags: ['动态规划', '设计']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划设计:最长递增子序列'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
2 changes: 1 addition & 1 deletion 动态规划系列/动态规划详解进阶.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ tags: ['动态规划', '核心框架系列']

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/单词拼接.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '两种思路解决单词拼接问题'
tags: ['动态规划', '设计']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '两种思路解决单词拼接问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/团灭股票问题.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '团灭 LeetCode 股票买卖问题'
tags: ['动态规划']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '团灭 LeetCode 股票买卖问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/子序列问题模板.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之子序列问题解题模板'
tags: ['动态规划', '子序列']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之子序列问题解题模板'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/抢房子.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '团灭 LeetCode 打家劫舍问题'
tags: ['动态规划']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '团灭 LeetCode 打家劫舍问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/最优子结构.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划系列答疑篇'
tags: ['动态规划', '核心框架']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划系列答疑篇'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/状态压缩技巧.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '对动态规划发动降维打击'
tags: ['动态规划', '核心框架']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '对动态规划发动降维打击'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/编辑距离.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '编辑距离'
tags: ['动态规划']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '编辑距离'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/背包问题.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '动态规划之背包问题'
tags: ['动态规划', '背包问题']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '动态规划之背包问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
3 changes: 2 additions & 1 deletion 动态规划系列/贪心算法之区间调度问题.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: '贪心算法之区间调度问题'
tags: ['贪心算法', '排序']
---

<p align='center'>
Expand All @@ -11,7 +12,7 @@ title: '贪心算法之区间调度问题'

![](https://labuladong.github.io/pictures/souyisou1.png)

**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**
**通知:[数据结构精品课](https://aep.h5.xeknow.com/s/1XJHEO) 已更新到 V2.1,[手把手刷二叉树系列课程](https://aep.xet.tech/s/3YGcq3) 上线。[第 18 期每日打卡](https://aep.xet.tech/s/2PLO1n) 开始报名。反馈或修正 chatGPT 翻译的多语言代码 [点击这里](https://github.com/labuladong/fucking-algorithm/issues/1113)。另外,建议你在我的 [网站](https://labuladong.github.io/algo/) 学习文章,体验更好。**



Expand Down
Loading