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
  • 530,615
  • 113
  • 910
  • 808
TheDude
  • 3,688
  • 2
  • 27
  • 48

1 Answers1

18

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

Sven Marnach
  • 530,615
  • 113
  • 910
  • 808