码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode?python】 88. Merge Sorted Array

时间:2016-10-31 21:12:51      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:type   object   elf   void   class   array   odi   ted   etc   

class Solution(object):
    def merge(self, nums1, m, nums2, n):
        """
        :type nums1: List[int]
        :type m: int
        :type nums2: List[int]
        :type n: int
        :rtype: void Do not return anything, modify nums1 in-place instead.
        """
        tag=len(nums1)
        while tag>m:
            nums1.pop()
            tag-=1
        nums1.extend(nums2[0:n])
        nums1.sort()
       

【leetcode?python】 88. Merge Sorted Array

标签:type   object   elf   void   class   array   odi   ted   etc   

原文地址:http://www.cnblogs.com/kwangeline/p/6016926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!