6.Merge Two Sorted Arrays
1.Description(Easy)
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]
2.Code
正向扫描
跟Merge two sorted list 相似。
Last updated
Was this helpful?