algo/src/algorithms/mod.rs
Jan Christian Grünhage c2da90822c feat: add bubblesort
2017-08-27 13:27:35 +02:00

6 lines
88 B
Rust

pub trait Algorithm {
fn sort(vector: Vec<i32>) -> Vec<i32>;
}
pub mod bubblesort;