Sort the list of random generated 10 Million numbers between 1 and 100, in python without using inbuilt functions, Quicksort didnt worked for me here.
I have used quicksort code from the mentioned link: http://interactivepython.org/runestone/static/pythonds/SortSearch/TheQuickSort.html
Error I got while implementing it : for x in range (0, 100000): listOfNumbers.append(random.randint(1, 100))
quickSort(listOfNumbers) print(listOfNumbers)
RuntimeError: maximum recursion depth exceeded