let arr1 = [1, 2] let arr2 = [-1, 2, 8, 9] merge(arr1,arr2) //Return [-1,1,2,2,8,9]
← 45. 二路归并47. 多叉树的最大深度 →