(Leetcode) Merge Sorted Array---merge arrays

Source: Internet
Author: User

Given sorted integer Arrays nums1 and nums2, merge nums2 into nums1 as one sorted Array.

Note:
Assume that nums1 have enough space (size that's greater or equal to m + n) to hold add Itional elements from nums2. The number of elements initialized in nums1 and nums2 is m and n respectively.

Subscribe to see which companies asked this question


Problem Solving Analysis:

Simple topic, merging two lists. The idea here is to say that another list is added to the back of a list and then sorted by size.


#-*-Coding:utf-8-*-__author__ = ' Jiuzhang ' class solution (object):    def merge (self, nums1, M, NUMS2, N):        nums1[m : M + n] = nums2[:n]        nums1.sort ()


(Leetcode) Merge Sorted Array---merge arrays

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.