This repository has been archived on 2022-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
greedy-rs/src/main.rs

9 lines
138 B
Rust
Raw Normal View History

2022-09-23 06:56:47 -05:00
mod lib;
use greedy_example::find_outlier_and_sort;
fn main(){
let funk = vec![1,2,3,6,4,5,7,8];
find_outlier_and_sort(funk);
}