green flag to reset and update length turbo mode is recommended for long lists, shift press green flag
inefficient but simple sorting algorithm stable adaptive space - O(1) inplace time compl - best: Ω(n) average: Θ(n^2) worst: O(n^2) loop through every item and swap with the previous item (move it backwards) until its before something thats bigger and after something thats smaller eg: [4, 7, 2, 6, 5] [4, 7, 2, 6, 5] ^ [4, 7, 2, 6, 5] ^ [4, 2, 7, 6, 5] * ^ [2, 4, 7, 6, 5] * ^ [2, 4, 7, 6, 5] ^ [2, 4, 6, 7, 5] * ^ [2, 4, 6, 7, 5] ^ [2, 4, 6, 5, 7] * ^ [2, 4, 5, 6, 7] * ^