From a48274a039167d2522a58ee54d10c77f1e6f1190 Mon Sep 17 00:00:00 2001 From: Owen Wang <44537783+zewenw@users.noreply.github.com> Date: Thu, 3 Aug 2023 10:34:28 +0100 Subject: [PATCH 1/8] Update README.md daily question --- solution/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solution/README.md b/solution/README.md index f129500045c0e..cbf26ab497c7e 100644 --- a/solution/README.md +++ b/solution/README.md @@ -12,7 +12,7 @@ | 题号 | 题解 | 标签 | 难度 | 备注 | | --- | --- | --- | --- | --- | | 0001 | [两数之和](/solution/0000-0099/0001.Two%20Sum/README.md) | `数组`,`哈希表` | 简单 | | -| 0002 | [两数相加](/solution/0000-0099/0002.Add%20Two%20Numbers/README.md) | `递归`,`链表`,`数学` | 中等 | | +| 0002 | [两数相加](/solution/0000-0099/0002.Add%20Two%20Numbers/README.md) | `递归`,`链表`,`数学` | 中等 | done | | 0003 | [无重复字符的最长子串](/solution/0000-0099/0003.Longest%20Substring%20Without%20Repeating%20Characters/README.md) | `哈希表`,`字符串`,`滑动窗口` | 中等 | | | 0004 | [寻找两个正序数组的中位数](/solution/0000-0099/0004.Median%20of%20Two%20Sorted%20Arrays/README.md) | `数组`,`二分查找`,`分治` | 困难 | | | 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | | @@ -2816,4 +2816,4 @@ ## 版权 -著作权归 [GitHub 开源社区 Doocs](https://github.com/doocs) 所有,商业转载请联系 [@yanglbme](mailto:contact@yanglibin.info) 获得授权,非商业转载请注明出处。 \ No newline at end of file +著作权归 [GitHub 开源社区 Doocs](https://github.com/doocs) 所有,商业转载请联系 [@yanglbme](mailto:contact@yanglibin.info) 获得授权,非商业转载请注明出处。 From 1b6d5d486f2ea40270daa832d70e576a8fef36c7 Mon Sep 17 00:00:00 2001 From: Owen Wang <44537783+zewenw@users.noreply.github.com> Date: Sat, 5 Aug 2023 11:19:37 +0100 Subject: [PATCH 2/8] Update README.md --- solution/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solution/README.md b/solution/README.md index cbf26ab497c7e..1b05a4663ccf2 100644 --- a/solution/README.md +++ b/solution/README.md @@ -11,9 +11,9 @@ | 题号 | 题解 | 标签 | 难度 | 备注 | | --- | --- | --- | --- | --- | -| 0001 | [两数之和](/solution/0000-0099/0001.Two%20Sum/README.md) | `数组`,`哈希表` | 简单 | | +| 0001 | [两数之和](/solution/0000-0099/0001.Two%20Sum/README.md) | `数组`,`哈希表` | 简单 | done | | 0002 | [两数相加](/solution/0000-0099/0002.Add%20Two%20Numbers/README.md) | `递归`,`链表`,`数学` | 中等 | done | -| 0003 | [无重复字符的最长子串](/solution/0000-0099/0003.Longest%20Substring%20Without%20Repeating%20Characters/README.md) | `哈希表`,`字符串`,`滑动窗口` | 中等 | | +| 0003 | [无重复字符的最长子串](/solution/0000-0099/0003.Longest%20Substring%20Without%20Repeating%20Characters/README.md) | `哈希表`,`字符串`,`滑动窗口` | 中等 | done | | 0004 | [寻找两个正序数组的中位数](/solution/0000-0099/0004.Median%20of%20Two%20Sorted%20Arrays/README.md) | `数组`,`二分查找`,`分治` | 困难 | | | 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | | | 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | | From 690b3525c22d658b38e1c9ee59ea8ad36cb72532 Mon Sep 17 00:00:00 2001 From: Owen Wang <44537783+zewenw@users.noreply.github.com> Date: Sun, 6 Aug 2023 14:47:29 +0100 Subject: [PATCH 3/8] Update README.md --- solution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution/README.md b/solution/README.md index 1b05a4663ccf2..ae405da96930f 100644 --- a/solution/README.md +++ b/solution/README.md @@ -15,7 +15,7 @@ | 0002 | [两数相加](/solution/0000-0099/0002.Add%20Two%20Numbers/README.md) | `递归`,`链表`,`数学` | 中等 | done | | 0003 | [无重复字符的最长子串](/solution/0000-0099/0003.Longest%20Substring%20Without%20Repeating%20Characters/README.md) | `哈希表`,`字符串`,`滑动窗口` | 中等 | done | | 0004 | [寻找两个正序数组的中位数](/solution/0000-0099/0004.Median%20of%20Two%20Sorted%20Arrays/README.md) | `数组`,`二分查找`,`分治` | 困难 | | -| 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | | +| 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | done | | 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | | | 0007 | [整数反转](/solution/0000-0099/0007.Reverse%20Integer/README.md) | `数学` | 中等 | | | 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | | From 3a578dcf71cec448133d6c3aa246fcb0b1c79e75 Mon Sep 17 00:00:00 2001 From: Owen Wang <44537783+zewenw@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:06:37 +0100 Subject: [PATCH 4/8] Update README.md --- solution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution/README.md b/solution/README.md index ae405da96930f..2691840a95210 100644 --- a/solution/README.md +++ b/solution/README.md @@ -21,7 +21,7 @@ | 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | | | 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | | | 0010 | [正则表达式匹配](/solution/0000-0099/0010.Regular%20Expression%20Matching/README.md) | `递归`,`字符串`,`动态规划` | 困难 | | -| 0011 | [盛最多水的容器](/solution/0000-0099/0011.Container%20With%20Most%20Water/README.md) | `贪心`,`数组`,`双指针` | 中等 | | +| 0011 | [盛最多水的容器](/solution/0000-0099/0011.Container%20With%20Most%20Water/README.md) | `贪心`,`数组`,`双指针` | 中等 | done | | 0012 | [整数转罗马数字](/solution/0000-0099/0012.Integer%20to%20Roman/README.md) | `哈希表`,`数学`,`字符串` | 中等 | | | 0013 | [罗马数字转整数](/solution/0000-0099/0013.Roman%20to%20Integer/README.md) | `哈希表`,`数学`,`字符串` | 简单 | | | 0014 | [最长公共前缀](/solution/0000-0099/0014.Longest%20Common%20Prefix/README.md) | `字典树`,`字符串` | 简单 | | From 921f0db00cb8017f09cdd6715c6b7b98521121b4 Mon Sep 17 00:00:00 2001 From: Owen Wang <44537783+zewenw@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:47:13 +0100 Subject: [PATCH 5/8] Update README.md --- solution/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solution/README.md b/solution/README.md index 2691840a95210..8ec7f0c34d2b0 100644 --- a/solution/README.md +++ b/solution/README.md @@ -16,8 +16,8 @@ | 0003 | [无重复字符的最长子串](/solution/0000-0099/0003.Longest%20Substring%20Without%20Repeating%20Characters/README.md) | `哈希表`,`字符串`,`滑动窗口` | 中等 | done | | 0004 | [寻找两个正序数组的中位数](/solution/0000-0099/0004.Median%20of%20Two%20Sorted%20Arrays/README.md) | `数组`,`二分查找`,`分治` | 困难 | | | 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | done | -| 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | | -| 0007 | [整数反转](/solution/0000-0099/0007.Reverse%20Integer/README.md) | `数学` | 中等 | | +| 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | done | +| 0007 | [整数反转](/solution/0000-0099/0007.Reverse%20Integer/README.md) | `数学` | 中等 | done | | 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | | | 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | | | 0010 | [正则表达式匹配](/solution/0000-0099/0010.Regular%20Expression%20Matching/README.md) | `递归`,`字符串`,`动态规划` | 困难 | | From a9da73c82e24ab7b686c98a97ee9c215090881b8 Mon Sep 17 00:00:00 2001 From: "Zewn(Owen) Wang" <44537783+zewenw@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:31:09 +0100 Subject: [PATCH 6/8] Update README.md --- solution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution/README.md b/solution/README.md index 8ec7f0c34d2b0..9ade6bbbdbb03 100644 --- a/solution/README.md +++ b/solution/README.md @@ -18,7 +18,7 @@ | 0005 | [最长回文子串](/solution/0000-0099/0005.Longest%20Palindromic%20Substring/README.md) | `字符串`,`动态规划` | 中等 | done | | 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | done | | 0007 | [整数反转](/solution/0000-0099/0007.Reverse%20Integer/README.md) | `数学` | 中等 | done | -| 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | | +| 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | done | | 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | | | 0010 | [正则表达式匹配](/solution/0000-0099/0010.Regular%20Expression%20Matching/README.md) | `递归`,`字符串`,`动态规划` | 困难 | | | 0011 | [盛最多水的容器](/solution/0000-0099/0011.Container%20With%20Most%20Water/README.md) | `贪心`,`数组`,`双指针` | 中等 | done | From 1944eb9c29d1125c50a020d8752f2959989de68b Mon Sep 17 00:00:00 2001 From: "Zewn(Owen) Wang" <44537783+zewenw@users.noreply.github.com> Date: Sun, 3 Sep 2023 11:20:50 +0100 Subject: [PATCH 7/8] Update README.md --- solution/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution/README.md b/solution/README.md index 9ade6bbbdbb03..a04bcd14ab041 100644 --- a/solution/README.md +++ b/solution/README.md @@ -19,7 +19,7 @@ | 0006 | [N 字形变换](/solution/0000-0099/0006.Zigzag%20Conversion/README.md) | `字符串` | 中等 | done | | 0007 | [整数反转](/solution/0000-0099/0007.Reverse%20Integer/README.md) | `数学` | 中等 | done | | 0008 | [字符串转换整数 (atoi)](/solution/0000-0099/0008.String%20to%20Integer%20%28atoi%29/README.md) | `字符串` | 中等 | done | -| 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | | +| 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | done | | 0010 | [正则表达式匹配](/solution/0000-0099/0010.Regular%20Expression%20Matching/README.md) | `递归`,`字符串`,`动态规划` | 困难 | | | 0011 | [盛最多水的容器](/solution/0000-0099/0011.Container%20With%20Most%20Water/README.md) | `贪心`,`数组`,`双指针` | 中等 | done | | 0012 | [整数转罗马数字](/solution/0000-0099/0012.Integer%20to%20Roman/README.md) | `哈希表`,`数学`,`字符串` | 中等 | | From 0289a8f4ba7f3c993c8b4f5926554dc3e06472cc Mon Sep 17 00:00:00 2001 From: "Zewn(Owen) Wang" <44537783+zewenw@users.noreply.github.com> Date: Tue, 5 Sep 2023 09:02:52 +0100 Subject: [PATCH 8/8] Update README.md --- solution/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solution/README.md b/solution/README.md index a04bcd14ab041..2e32258de5f64 100644 --- a/solution/README.md +++ b/solution/README.md @@ -22,8 +22,8 @@ | 0009 | [回文数](/solution/0000-0099/0009.Palindrome%20Number/README.md) | `数学` | 简单 | done | | 0010 | [正则表达式匹配](/solution/0000-0099/0010.Regular%20Expression%20Matching/README.md) | `递归`,`字符串`,`动态规划` | 困难 | | | 0011 | [盛最多水的容器](/solution/0000-0099/0011.Container%20With%20Most%20Water/README.md) | `贪心`,`数组`,`双指针` | 中等 | done | -| 0012 | [整数转罗马数字](/solution/0000-0099/0012.Integer%20to%20Roman/README.md) | `哈希表`,`数学`,`字符串` | 中等 | | -| 0013 | [罗马数字转整数](/solution/0000-0099/0013.Roman%20to%20Integer/README.md) | `哈希表`,`数学`,`字符串` | 简单 | | +| 0012 | [整数转罗马数字](/solution/0000-0099/0012.Integer%20to%20Roman/README.md) | `哈希表`,`数学`,`字符串` | 中等 | done | +| 0013 | [罗马数字转整数](/solution/0000-0099/0013.Roman%20to%20Integer/README.md) | `哈希表`,`数学`,`字符串` | 简单 | done | | 0014 | [最长公共前缀](/solution/0000-0099/0014.Longest%20Common%20Prefix/README.md) | `字典树`,`字符串` | 简单 | | | 0015 | [三数之和](/solution/0000-0099/0015.3Sum/README.md) | `数组`,`双指针`,`排序` | 中等 | | | 0016 | [最接近的三数之和](/solution/0000-0099/0016.3Sum%20Closest/README.md) | `数组`,`双指针`,`排序` | 中等 | |