()
| 43 | } |
| 44 | |
| 45 | fn main() { |
| 46 | let mut nums = [54,26,93,17,77,31,44,55,20]; |
| 47 | bubble_sort1(&mut nums); |
| 48 | println!("sorted nums: {:?}", nums); |
| 49 | |
| 50 | let mut nums = [54,26,93,17,77,31,44,55,20]; |
| 51 | bubble_sort2(&mut nums); |
| 52 | println!("sorted nums: {:?}", nums); |
| 53 | |
| 54 | let mut nums = [54,26,93,17,77,31,44,55,20]; |
| 55 | bubble_sort3(&mut nums); |
| 56 | println!("sorted nums: {:?}", nums); |
| 57 | } |
nothing calls this directly
no test coverage detected