1/29/2024
Merge sort with Bottom Up approach
This is my attempt at solving the** Sort an Array problem** with the Bottom-Up approach.
In the Bottom Up approach, each iteration, you merge each pair of the sub-arrays of the original array in to an array of double size. After each iteration, you double the size of the sub-arrays until it reaches the size of the original array.