📜  leetcoe 88 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:13.790000             🧑  作者: Mango

代码示例1
Input: nums1 = [1,2,3,0,0,0], m = 3, nums2 = [2,5,6], n = 3
Output: [1,2,2,3,5,6]
Explanation: The arrays we are merging are [1,2,3] and [2,5,6].
The result of the merge is [1,2,2,3,5,6] with the underlined elements coming from nums1.