Merge Sort
Use Recursion to implement merge sort.
We'll cover the following...
Problem statement
The problem is the same as in the Bubble Sort lesson. We are given an input array of numbers and we need to sort them. The only difference will be in the time complexity, which we will discuss later.
Solution
Suppose we had to sort an array ...