Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 340 Bytes

File metadata and controls

16 lines (8 loc) · 340 Bytes

Quick Sort

Problem Statement

Quick Sort Write a function that takes in an array of integers and returns a sorted version of that array. Use the Quick Sort algorithm to sort the array.

Sample input: [8, 5, 2, 9, 5, 6, 3] Sample output: [2, 3, 5, 5, 6, 8, 9]

Solution

Check this Python code.