AlgoMaster Logo

Merge Sort

arr=[38, 27, 43, 3, 9, 82, 10]
0 / 72
0123456382743398210
Step:Start: sort the array with recursive (top-down) merge sort
1
mergeSort([...])