Skip to content

Commit 2da4a4a

Browse files
committed
style: update description to lc problem: No.34
1 parent c07311d commit 2da4a4a

File tree

2 files changed

+3
-3
lines changed
  • solution
    • 0000-0099/0034.Find First and Last Position of Element in Sorted Array

2 files changed

+3
-3
lines changed

solution/0000-0099/0034.Find First and Last Position of Element in Sorted Array/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<p><strong>示例 1:</strong></p>
1818

1919
<pre>
20-
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 8
20+
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 8
2121
<strong>输出:</strong>[3,4]</pre>
2222

2323
<p><strong>示例&nbsp;2:</strong></p>
2424

2525
<pre>
26-
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 6
26+
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 6
2727
<strong>输出:</strong>[-1,-1]</pre>
2828

2929
<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, 33, 1599}
137+
skip_question_ids = {3, 33, 34, 1599}
138138

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

0 commit comments

Comments
 (0)