實現兩個有序數組合併爲一個有序數組 python

實現兩個有序數組合併爲一個有序數組python test1 = [1,3,5,7,9] test2=[2,4,6,7,10,11,34,55] def mergetest(test1,test2): result=[ ] len1=len(test1) len2=len(test2)
相關文章
相關標籤/搜索