力扣88 合并两个数组并排序 python

这个比较简单,从网上搜索了sort函数的用法
代码实现

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.
        """
        j=0
        i=m
        while j <n:
            nums1[i]=nums2[j]
            j+=1
            i+=1
        nums1.sort()

力扣88 合并两个数组并排序 python_第1张图片

你可能感兴趣的:(力扣88 合并两个数组并排序 python)