Recursive Sorting (2)
Problem: You are given a list of 32 numbers and you are asked to SORT this list.
Solution: Divide the list into two lists each with 16 numbers; sort them; and then merge them.
If we can solve the problem for lists that include 16 numbers, then we can solve the original problem