Skip to content

Commit 92ae306

Browse files
committed
docs: remove unnecessary labels from lc problem: No.0704
No.0704.Binary Search
1 parent feae4e7 commit 92ae306

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

solution/0700-0799/0704.Binary Search/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
<p><br>
1212
<strong>示例 1:</strong></p>
1313

14-
<pre><strong>输入:</strong> <code>nums</code> = [-1,0,3,5,9,12], <code>target</code> = 9
14+
<pre><strong>输入:</strong> nums = [-1,0,3,5,9,12], target = 9
1515
<strong>输出:</strong> 4
16-
<strong>解释:</strong> 9 出现在 <code>nums</code> 中并且下标为 4
16+
<strong>解释:</strong> 9 出现在 nums 中并且下标为 4
1717
</pre>
1818

1919
<p><strong>示例&nbsp;2:</strong></p>
2020

21-
<pre><strong>输入:</strong> <code>nums</code> = [-1,0,3,5,9,12], <code>target</code> = 2
21+
<pre><strong>输入:</strong> nums = [-1,0,3,5,9,12], target = 2
2222
<strong>输出:</strong> -1
23-
<strong>解释:</strong> 2 不存在 <code>nums</code> 中因此返回 -1
23+
<strong>解释:</strong> 2 不存在 nums 中因此返回 -1
2424
</pre>
2525

2626
<p>&nbsp;</p>

0 commit comments

Comments
 (0)