Slow Sort
Definition
Slow Sort is a humorous sorting algorithm designed to be as slow as possible while remaining correct. It is based on the multiply-and-surrender paradigm (a play on the divide-and-conquer strategy).
It is a highly inefficient recursive algorithm that divides the array into halves, recursively sorts them, compares the last elements of the two halves to place the maximum element at the end, and then recursively sorts the remaining array.