For large arrays the answer is usually quicksort if we want in place sort, or merge sort if we want guaranteed O(nlogn)
However for small arrays insertion sort is faster than the above.
Is there a different absolute shortest way to sort exactly 8 elements?
Or is insertion sort the way to go?