Alright, part 2 of the sorting algorithms I’m going through. If you missed part 1, read my blog here! In the last blog, I reviewed selection, bubble, and insertion sorting algorithms. All of them required nested loops, which gave them all an O(n²) time complexity. …