Merge Sorted Array Ii

Merge Sorted Array Ii

题目地址

https://www.lintcode.com/problem/merge-sorted-array/description

题目描述

Merge two given sorted integer array A and B into a new sorted integer array.

Example
A=[1,2,3,4]

B=[2,4,5,6]

return [1,2,2,3,4,4,5,6]

Challenge
How can you optimize your algorithm
if one array is very large and the other is very small?

代码

Last updated

Was this helpful?