O(n²)
Bubble sort
Swap neighbours until nothing is out of order.
Seven sorting algorithms, one page each. Every page runs its algorithm step by step on an array you can reshape, and races it against the other six on the same values.
Swap neighbours until nothing is out of order.
Build a sorted prefix, one value at a time.
Find the smallest, put it in front, repeat.
Insertion sort over shrinking gaps.
Split to single elements, then merge in order.
Partition around a pivot, then sort the sides.
Build a heap, then pull the maximum off it n times.