Function steap_by_steap::sort::Quick

source ·
pub fn Quick(arr: Vec<i32>) -> PyResult<Vec<i32>>
Expand description

Sorts the array using the Quick Sort algorithm.

§Arguments

  • arr - The array to be sorted.

§Returns

The sorted array.