You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
finlist=quick_sort([i for i in sort_list if i<sort_list[pivot_element]],pivot_element)+[i for i in sort_list if i==sort_list[pivot_element]]+quick_sort([i for i in sort_list if i>sort_list[pivot_element]],pivot_element)
return finlist
print("Enter list of integers seperated by commas to get a sorted list.")