From e8b68168fccb9c9bdd71625120e5c810927916e3 Mon Sep 17 00:00:00 2001 From: internetlandlord Date: Fri, 21 Oct 2022 13:56:18 -0500 Subject: housekeeping on files and README.md --- README.md | 6 ++++-- quick-sort.py | 2 ++ tripler.py | 5 +++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8d18207..56133d5 100644 --- a/README.md +++ b/README.md @@ -17,11 +17,13 @@ More to come! ## Ideas -- concatenate strings to create a sorted csv separate from intake, e.g. ./input.csv -> ./input-sorted.csv [-4] index? - ebic 1337 hacker progress bar fed from loop iterations -> output to console - time study (how long does each take) + complexity log -### Other funcions +## Other funcions + +#### buildtest.sh +* Used to generate a series of CSVs with increasingly larger row sizes #### input-output.py * Contains functions that are imported into algorithm scripts for ingressing/ diff --git a/quick-sort.py b/quick-sort.py index e048970..1f807dd 100755 --- a/quick-sort.py +++ b/quick-sort.py @@ -3,6 +3,8 @@ # ---------- Quick Sort # Python implementation of the quick sort algorithm # performed against a randomly-generated list of numbers +# Uses return arguments in the recursively called quickSort() +# function # ---------- Imported modules diff --git a/tripler.py b/tripler.py index 527da24..0f6ae61 100755 --- a/tripler.py +++ b/tripler.py @@ -1,7 +1,8 @@ #!/bin/python3 -# ---------- title - +# ---------- Tripler +# Serves as a proof-of-concept for CSV importation +# and manipulation of its elements in a created list. # ---------- Imported modules -- cgit v1.2.3