Skip to content

Commit c07311d

Browse files
committed
style: update description to lc problem: No.33
1 parent a6b84d8 commit c07311d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

solution/0000-0099/0033.Search in Rotated Sorted Array/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
<p><strong>示例 1:</strong></p>
2020

2121
<pre>
22-
<strong>输入:</strong>nums = [<code>4,5,6,7,0,1,2]</code>, target = 0
22+
<strong>输入:</strong>nums = [4,5,6,7,0,1,2], target = 0
2323
<strong>输出:</strong>4
2424
</pre>
2525

2626
<p><strong>示例&nbsp;2:</strong></p>
2727

2828
<pre>
29-
<strong>输入:</strong>nums = [<code>4,5,6,7,0,1,2]</code>, target = 3
29+
<strong>输入:</strong>nums = [4,5,6,7,0,1,2], target = 3
3030
<strong>输出:</strong>-1</pre>
3131

3232
<p><strong>示例 3:</strong></p>

solution/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def generate_summary(result):
134134
def refresh(result):
135135
"""update problems"""
136136
pattern = re.compile("src=\"(.*?)\"")
137-
skip_question_ids = {3, 1599}
137+
skip_question_ids = {3, 33, 1599}
138138

139139
for question in result:
140140
front_question_id = question['frontend_question_id']

0 commit comments

Comments
 (0)