News

The code in bubble_sort_slow.py is taken from the wonderful book, Effective Python by Brett Slatkin, and the second bubble_sort_fast.py, I wrote it myself to demonstrate the difference. The algorithm ...
This is to demonstrate the speed of two different ways for coding a bubble sort in python. The two codes generate a 10,000 integers exactly the same way, only they differ in how they loop through them ...