didn't add to the last commit wtf

This commit is contained in:
jacekpoz 2024-04-08 22:56:22 +02:00
parent 85950a35b0
commit 7efd7621d1
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -94,7 +94,6 @@ pub fn quick_sort(list: &mut [u64], print: bool) -> SortResult {
let mut res = SortResult::default();
if list.len() > 1 {
println!("before partition: {:?}", res);
let pivot = lomuto_partition(list, &mut res);
if print {