News

We’ve refactored the original Sort application with a few functional programming features. Now we’re ready to write a completely functional Sort application.
List Sorting and Searching Program: This repository contains a Python program for sorting and searching a list of random numbers. Features: Generates a list of random numbers within a specified range.
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 ...