Solution Review: Merge Sort
Let's go over the solution of solving MergeSort through concurrency.
We'll cover the following...
We'll cover the following...
Let’s go over the changes we made to the MergeSort function.
Firstly, in merge sort, we keep dividing our array recursively into the right side and the left side and call the MergeSort function on both sides from line 30 to ...