from Hacker News

How to Sort a List in Python

by aogl on 8/29/20, 12:30 AM with 3 comments

  • by dalke on 8/29/20, 5:10 AM

    Python has a sorting HOWTO at https://docs.python.org/3/howto/sorting.html . I was the original author, back in around 1998 or so. This new article covers a subset of that HOWTO.
  • by babu_bhaiya on 8/29/20, 1:43 AM

    What is the time complexity? O(n log n) most probably. And what actual sort does it use? Quick sort or merge sort or any other?