From cb887cc85943b96172a935f4dac3828c1e087a1d Mon Sep 17 00:00:00 2001 From: internetlandlord Date: Wed, 2 Nov 2022 17:53:23 -0500 Subject: reverse bubble sort and insertion sort now working --- reverse-bubble-sort.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'reverse-bubble-sort.py') diff --git a/reverse-bubble-sort.py b/reverse-bubble-sort.py index 109ab52..a13f4cb 100755 --- a/reverse-bubble-sort.py +++ b/reverse-bubble-sort.py @@ -1,10 +1,9 @@ #!/bin/python3 # ---------- REVERSE Bubble Sort Algorithm -# Python implementation of bubble sort algorithm -# uses the csv, and inputoutput modules to import -# CSVs and sort the numbers in a list before writing -# to a CSV file with an appended -sorted title. +# Bubble sort in reverse (greatest --> least) +# Very simple implementation due to straightforward +# layout of algorithm # ---------- Imported modules import inputoutput as io -- cgit v1.2.3