sortingAlgorithms is a Python program that demonstrates two sorting algorithms: bubble sort and insertion sort.
The program generates a list of 10,000 random integers between 0 and 9. It then applies bubble sort and insertion sort to the list and prints the sorted results.
Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. The pass through the list is repeated until the list is sorted.
Insertion sort is another simple sorting algorithm that builds the final sorted array one item at a time. It iterates through the input list, removes one item at a time, finds the location it belongs within the sorted list, and inserts it there. It repeats until no input elements remain.
To run the program, simply download the code and run it using a Python interpreter. This program does not require any external libraries or dependencies.
Once the program has been executed, the sorted results will be printed to the console.