Skip to content

Commit 3ebda25

Browse files
committed
docs: update description to lc problem No.0035
No.0035.Search Insert Position
1 parent bed9e8a commit 3ebda25

File tree

1 file changed

+17
-0
lines changed
  • solution/0000-0099/0035.Search Insert Position

1 file changed

+17
-0
lines changed

solution/0000-0099/0035.Search Insert Position/README.md

+17
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,23 @@
3434
<strong>输出:</strong> 0
3535
</pre>
3636

37+
<p><strong>示例 5:</strong></p>
38+
39+
<pre>
40+
<strong>输入:</strong> nums = [1], target = 0
41+
<strong>输出:</strong> 0
42+
</pre>
43+
<p> </p>
44+
45+
<p><strong>提示:</strong></p>
46+
47+
<ul>
48+
<li><code>1 <= nums.length <= 10<sup>4</sup></code></li>
49+
<li><code>-10<sup>4</sup> <= nums[i] <= 10<sup>4</sup></code></li>
50+
<li><code>nums</code> 为<strong>无重复元素</strong>的<strong>升序</strong>排列数组</li>
51+
<li><code>-10<sup>4</sup> <= target <= 10<sup>4</sup></code></li>
52+
</ul>
53+
3754
## 解法
3855

3956
<!-- 这里可写通用的实现逻辑 -->

0 commit comments

Comments
 (0)