diff options
author | internetlandlord <f.fredhenry@gmail.com> | 2022-10-21 13:56:18 -0500 |
---|---|---|
committer | internetlandlord <f.fredhenry@gmail.com> | 2022-10-21 13:56:18 -0500 |
commit | e8b68168fccb9c9bdd71625120e5c810927916e3 (patch) | |
tree | 37c2f230fefa670a274bc47e4df33b12a33f1e37 /quick-sort.py | |
parent | 7fef7e0d0948f24460f81ad590c1d2e90ac6490b (diff) |
housekeeping on files and README.md
Diffstat (limited to 'quick-sort.py')
-rwxr-xr-x | quick-sort.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |