Recall the merge sort algorithm that we implemented in class. We used recursion for our implementation.
Try to implement merge sort without recursion. This is quite tricky to do in practice. So think before you implement your algorithm. Do not look for solutions in Google!
Check that your algorithm is correct by running it on an array of 10 random integers.