summaryrefslogtreecommitdiff
path: root/quick-sort.py
diff options
context:
space:
mode:
Diffstat (limited to 'quick-sort.py')
-rwxr-xr-xquick-sort.py2
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