Leetcode题88、合并两个有序数组(Python题解)微博面试题

问题:
Leetcode题88、合并两个有序数组(Python题解)微博面试题_第1张图片

题目来源:力扣(LeetCode)

leetcode88.合并两个有序数组

难度:简单

分析:
有两种方法,一个是python的骚操作,直接数组切片,然后sort就完事了;一个是利用三指针,充分利用长数组后半部分的多余空间进行原地操作。
解决方法:
1:python技巧

#python技巧
#超过50%

class Solution:
    def merge(self, nums1: List[int], m: int, nums2

你可能感兴趣的:(leetcode,指针,leetcode,算法,数据结构,python)