diff --git a/solution/0000-0099/0003.Longest Substring Without Repeating Characters/README.md b/solution/0000-0099/0003.Longest Substring Without Repeating Characters/README.md index 30a0694ac6393..4c0f519bc0dc4 100644 --- a/solution/0000-0099/0003.Longest Substring Without Repeating Characters/README.md +++ b/solution/0000-0099/0003.Longest Substring Without Repeating Characters/README.md @@ -15,7 +15,7 @@
输入: s = "abcabcbb"
输出: 3
-解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
+解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
示例 2:
@@ -23,7 +23,7 @@
输入: s = "bbbbb"
输出: 1
-解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
+解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
示例 3:
@@ -31,8 +31,8 @@输入: s = "pwwkew" 输出: 3 -解释: 因为无重复字符的最长子串是"wke",所以其长度为 3。 - 请注意,你的答案必须是 子串 的长度,"pwke"是一个子序列,不是子串。 +解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。 +请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
diff --git a/solution/main.py b/solution/main.py index 73b1ec3cd7e34..d9a248683f6ae 100644 --- a/solution/main.py +++ b/solution/main.py @@ -134,7 +134,7 @@ def generate_summary(result): def refresh(result): """update problems""" pattern = re.compile("src=\"(.*?)\"") - skip_question_ids = {1599} + skip_question_ids = {3, 1599} for question in result: front_question_id = question['frontend_question_id']