mirror of https://github.com/doocs/leetcode.git
style: update description to lc problem: No.34
This commit is contained in:
parent
c07311d69d
commit
2da4a4ab33
|
|
@ -17,13 +17,13 @@
|
|||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 8
|
||||
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 8
|
||||
<strong>输出:</strong>[3,4]</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 6
|
||||
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 6
|
||||
<strong>输出:</strong>[-1,-1]</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ def generate_summary(result):
|
|||
def refresh(result):
|
||||
"""update problems"""
|
||||
pattern = re.compile("src=\"(.*?)\"")
|
||||
skip_question_ids = {3, 33, 1599}
|
||||
skip_question_ids = {3, 33, 34, 1599}
|
||||
|
||||
for question in result:
|
||||
front_question_id = question['frontend_question_id']
|
||||
|
|
|
|||
Loading…
Reference in New Issue