---------------------------------------------------------------------------
RecursionError Traceback (most recent call last)
<ipython-input-29-cc35d4255e1c> in <module>()
37 print(end-start)
38 start=time.time()
---> 39 quick_sort(numbers)
40 end=time.time()
41 print(end-start)
<ipython-input-29-cc35d4255e1c> in quick_sort(line)
12 left_seq=quick_sort(left_seq)
13 if right_seq:
---> 14 right_seq=quick_sort(right_seq)
15
16 return left_seq+[p]+right_seq
... last 1 frames repeated, from the frame below ...
<ipython-input-29-cc35d4255e1c> in quick_sort(line)
12 left_seq=quick_sort(left_seq)
13 if right_seq:
---> 14 right_seq=quick_sort(right_seq)
15
16 return left_seq+[p]+right_seq
RecursionError: maximum recursion depth exceeded in comparison