()
| 68 | } |
| 69 | |
| 70 | fn main() { |
| 71 | let mut nums = [54,26,93,17,77,31,44,55,20]; |
| 72 | let high = nums.len() - 1; |
| 73 | quick_sort1(&mut nums, 0, high); |
| 74 | println!("sorted nums: {:?}", nums); |
| 75 | |
| 76 | let mut nums = [54,26,93,17,77,31,44,55,20]; |
| 77 | let high = nums.len() - 1; |
| 78 | quick_sort2(&mut nums, 0, high); |
| 79 | println!("sorted nums: {:?}", nums); |
| 80 | } |
nothing calls this directly
no test coverage detected