鱼C论坛

 找回密码
 立即注册
查看: 1692|回复: 0

[技术交流] 【朱迪的LeetCode刷题笔记】88. Merge Sorted Array #Easy #C

[复制链接]
发表于 2021-3-28 12:58:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Judie 于 2021-4-6 14:22 编辑

  1. 88. Merge Sorted Array #Easy

  2. Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.

  3. The number of elements initialized in nums1 and nums2 are m and n respectively. You may assume that nums1 has a size equal to m + n such that it has enough space to hold additional elements from nums2.


  4. Example 1:

  5. Input: nums1 = [1,2,3,0,0,0], m = 3, nums2 = [2,5,6], n = 3
  6. Output: [1,2,2,3,5,6]

  7. Example 2:

  8. Input: nums1 = [1], m = 1, nums2 = [], n = 0
  9. Output: [1]


  10. Constraints:

  11. nums1.length == m + n
  12. nums2.length == n
  13. 0 <= m, n <= 200
  14. 1 <= m + n <= 200
  15. -109 <= nums1[i], nums2[i] <= 109
复制代码


WeChat Image_20210328005642.png

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-28 19:12

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表