We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bed9e8a commit 3ebda25Copy full SHA for 3ebda25
solution/0000-0099/0035.Search Insert Position/README.md
@@ -34,6 +34,23 @@
34
<strong>输出:</strong> 0
35
</pre>
36
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
54
## 解法
55
56
<!-- 这里可写通用的实现逻辑 -->
0 commit comments