Skip to content

Commit 39a5997

Browse files
committed
add 97 2416
1 parent 898a39e commit 39a5997

23 files changed

+798
-462
lines changed

assets/output/0097.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

assets/output/2416.md

Lines changed: 0 additions & 80 deletions
This file was deleted.

src/.vuepress/sidebar.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ export default sidebar({
138138
"0094",
139139
"0095",
140140
"0096",
141+
"0097",
141142
"0098",
142143
"0099"
143144
],
@@ -458,6 +459,13 @@ export default sidebar({
458459
"2262"
459460
],
460461
},
462+
{
463+
text: "2400-2499",
464+
collapsible: true,
465+
children: [
466+
"2416"
467+
],
468+
},
461469
{
462470
text: "面试题",
463471
collapsible: true,

src/.vuepress/theme.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ export default hopeTheme(
8080

8181
blog: {
8282
medias: {
83-
Twitter: 'https://twitter.com/xiaoxiaoinus',
8483
GitHub: 'https://github.com/2xiao',
8584
BiliBili: 'https://space.bilibili.com/497200280',
8685
Linkedin: 'https://www.linkedin.com/in/wuxiaoxiaojs/'

src/leetcode/algorithm/dynamic_programming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
| 0072 | [编辑距离](https://leetcode.com/problems/edit-distance/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0072) | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ff334b>Hard</font> |
120120
| 0044 | [通配符匹配](https://leetcode.com/problems/wildcard-matching/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0044) | [`贪心`](/leetcode/outline/tag/greedy.md) [`递归`](/leetcode/outline/tag/recursion.md) [`字符串`](/leetcode/outline/tag/string.md) `1+` | <font color=#ff334b>Hard</font> |
121121
| 0010 | [正则表达式匹配](https://leetcode.com/problems/regular-expression-matching/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0010) | [`递归`](/leetcode/outline/tag/recursion.md) [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ff334b>Hard</font> |
122-
| 0097 | [交错字符串](https://leetcode.com/problems/interleaving-string/) | | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ffb800>Medium</font> |
122+
| 0097 | [交错字符串](https://leetcode.com/problems/interleaving-string/) | [JS](https://2xiao.github.io/leetcode-js/leetcode/problem/0097) | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ffb800>Medium</font> |
123123
| 0115 | [不同的子序列](https://leetcode.com/problems/distinct-subsequences/) | | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ff334b>Hard</font> |
124124
| 0087 | [扰乱字符串](https://leetcode.com/problems/scramble-string/) | | [`字符串`](/leetcode/outline/tag/string.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ff334b>Hard</font> |
125125

0 commit comments

Comments
 (0)