Sorting Algorithm - Merge Sort
Merge Sort is a comparison algorithm that tries to sort the dataset by a Divide And Conquer method. The performance of this algorithm is $O(n*log(n))$.
How
We start by splitting the array up into separate elements, then we start by merging pairs together and we make sure