File tree 2 files changed +5
-5
lines changed
0000-0099/0003.Longest Substring Without Repeating Characters
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
<pre >
16
16
<strong >输入: </strong >s = "abcabcbb"
17
17
<strong >输出: </strong >3
18
- <strong >解释:</strong > 因为无重复字符的最长子串是 < code > "abc",所以其</ code >长度为 3。
18
+ <strong >解释:</strong > 因为无重复字符的最长子串是 "abc",所以其长度为 3。
19
19
</pre >
20
20
21
21
<p ><strong >示例 2:</strong ></p >
22
22
23
23
<pre >
24
24
<strong >输入: </strong >s = "bbbbb"
25
25
<strong >输出: </strong >1
26
- <strong >解释: </strong >因为无重复字符的最长子串是 < code > "b"</ code > ,所以其长度为 1。
26
+ <strong >解释: </strong >因为无重复字符的最长子串是 "b",所以其长度为 1。
27
27
</pre >
28
28
29
29
<p ><strong >示例 3:</strong ></p >
30
30
31
31
<pre >
32
32
<strong >输入: </strong >s = "pwwkew"
33
33
<strong >输出: </strong >3
34
- <strong >解释: </strong >因为无重复字符的最长子串是& nbsp ; < code > "wke"</ code > ,所以其长度为 3。
35
- & nbsp ; 请注意,你的答案必须是 <strong >子串 </strong >的长度,< code > "pwke"</ code > & nbsp ; 是一个<em >子序列,</em >不是子串。
34
+ <strong >解释: </strong >因为无重复字符的最长子串是 "wke",所以其长度为 3。
35
+ 请注意,你的答案必须是 <strong >子串 </strong >的长度,"pwke" 是一个<em >子序列,</em >不是子串。
36
36
</pre >
37
37
38
38
<p >  ; </p >
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def generate_summary(result):
134
134
def refresh (result ):
135
135
"""update problems"""
136
136
pattern = re .compile ("src=\" (.*?)\" " )
137
- skip_question_ids = {1599 }
137
+ skip_question_ids = {3 , 1599 }
138
138
139
139
for question in result :
140
140
front_question_id = question ['frontend_question_id' ]
You can’t perform that action at this time.
0 commit comments