Skip to content

Commit 4980524

Browse files
committed
docs: remove unnecessary labels from lc problem: No.0034
No.0034.Find First and Last Position of Element in Sorted Array
1 parent e35725e commit 4980524

File tree

1 file changed

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

1 file changed

+2
-2
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
@@ -21,13 +21,13 @@
2121
<p><strong>示例 1:</strong></p>
2222

2323
<pre>
24-
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 8
24+
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 8
2525
<strong>输出:</strong>[3,4]</pre>
2626

2727
<p><strong>示例 2:</strong></p>
2828

2929
<pre>
30-
<strong>输入:</strong>nums = [<code>5,7,7,8,8,10]</code>, target = 6
30+
<strong>输入:</strong>nums = [5,7,7,8,8,10], target = 6
3131
<strong>输出:</strong>[-1,-1]</pre>
3232

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

0 commit comments

Comments
 (0)