(力扣)第88. 合并两个有序数组

88. 合并两个有序数组


题目要求:

给你两个有序整数数组 nums1 和 nums2,请你将 nums2 合并到 nums1 中,使 nums1 成为一个有序数组。

初始化 nums1 和 nums2 的元素数量分别为 m 和 n 。你可以假设 nums1 的空间大小等于 m + n,这样它就有足够的空间保存来自 nums2 的元素。


解题思路:
  • 将nums1数组长度为nums2的最右子字符串换成nums2;
  • nums1排序,返回结果

解题代码:
class Solution:
    def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None:
        """
        Do not return anything, modify nums1 in-place instead.
        """
        #将nums1数组长度为nums2的最右子字符串换成nums2
        nums1[m:m+n] = nums2
        #排序
        nums1.sort()
        
        return nums1

我的leetcode.


(“Never twist yourself just to please the world.(永远不要为了讨好这个世界,而扭曲了自己。)”FIGHTING. . . .)

你可能感兴趣的:(Python3.7实战操作,leetcode,python,数组)