Question 1 out of 3
What is the time complexity of Quick Sort?
O(n log n)
Quick Sort has an average time complexity of O(n log n), making it efficient for large datasets.
Added to