QUICKSORT randomised

I have use randomised quick sort still tle…

my solution

In line number 29, you are using last element as the pivot, please use randomised pivot and try using math.random() which works better.

thank a lot

thanks for the help