dsa-in-java Quick Sort in Java This project contains an implementation of Quick Sort using the Hoare Partition Scheme. Time Complexity Average: O(n log n) Worst: O(n²) Example Input: [5,4,3,2,1] Output: [1,2,3,4,5]