egonSchiele/grokking_algorithms

Problem with max definition on Python in chapter_4/quick_sort/max_recursive

k1borgG opened this issue · 1 comments

If in input list last element is the biggest, the present algorithm is'n count it.

I solved this problem by changing the return in the case if length == 1 from return 1 to first element of list