The asymptotics of the sort(list) function in Python

You see, the asymptotics of this function are very important to me.

Author: Hemlok Soms, 2020-06-01

1 answers

Python uses merge sorting.

In the best, average, and worst cases, it works for O(n*log(n)).

 1
Author: garbart, 2020-10-11 11:02:03