Algorithms Explained #2: Sorting

Explanation of 3 types of sorting algorithms and their implementation in Python

Claudia Ng
Towards Data Science
4 min readOct 10, 2022

--

Image by 200 Degrees from Pixabay

In the previous article, I walked through recursion and we will build on this foundation with sorting algorithms in this article. Sorting algorithms are used to rearrange elements in an array so that each element is more than or equal to its predecessor. There are many…

--

--