Closed JumongEric closed 10 months ago
You should not have deleted the check list that was here
I will put it back
main
/master
/src/README.md
test_<module_name>.py
add README.md add working test_quick_sort when i pull your branch i have to fix it, with
from quick_sort import quick_sort
Code is good and working, but it could be made better
You are missing: module and test docstrings type annotaions comments marking zero case and it would be better to add coments on logic use auto formatter (it's easy, just install autoPEP8 and press Shift-Alt-F in VSCode)
Good, just fix the other issues
QuickSort is a popular and efficient sorting algorithm that follows the divide-and-conquer paradigm. The basic idea behind QuickSort is to select a "pivot" element from the array and partition the other elements into two sub-arrays according to whether they are less than or greater than the pivot. The process is then applied recursively to the sub-arrays.