AI-powered
podcast player
Listen to all your favourite podcasts with AI-powered features
Python's Slow Sorting Algorithm
The Python sorting algorithm is much more focused on reducing the total amount of comparisons than I would be in Rust, right? On a modern processor, you can do multiple comparisons at the same time during one cycle. Whereas a comparison in Python could be hundreds, maybe thousands of cycles. So it's a completely different optimization landscape.