7

I am implemented different sorting algorithms in Python to better understand them, and I was wondering what type of sort does Python's built-in sort method implement?

Sven Marnach
  • 574,206
  • 118
  • 941
  • 841
TheDude
  • 3,796
  • 2
  • 28
  • 51

1 Answers1

18

It's an algorithm called Timsort developed by Tim Peters specifically for Python.

Sven Marnach
  • 574,206
  • 118
  • 941
  • 841