mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-13 19:31:42 +08:00
批量更新数据
This commit is contained in:
@@ -21,14 +21,6 @@
|
||||
<strong>Explanation:</strong> The first 2 pairs are returned from the sequence: [1,1],[1,1],[1,2],[2,1],[1,2],[2,2],[1,3],[1,3],[2,3]
|
||||
</pre>
|
||||
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> nums1 = [1,2], nums2 = [3], k = 3
|
||||
<strong>Output:</strong> [[1,3],[2,3]]
|
||||
<strong>Explanation:</strong> All possible pairs are returned from the sequence: [1,3],[2,3]
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
||||
@@ -37,4 +29,5 @@
|
||||
<li><code>-10<sup>9</sup> <= nums1[i], nums2[i] <= 10<sup>9</sup></code></li>
|
||||
<li><code>nums1</code> and <code>nums2</code> both are sorted in <strong>non-decreasing order</strong>.</li>
|
||||
<li><code>1 <= k <= 10<sup>4</sup></code></li>
|
||||
<li><code>k <= nums1.length * nums2.length</code></li>
|
||||
</ul>
|
||||
|
Reference in New Issue
Block a user