algo/src/algorithms/mod.rs
Jan Christian Grünhage df06ce02c9 feat: add mergesort
2017-08-27 15:51:31 +02:00

7 lines
129 B
Rust

pub trait Algorithm {
fn sort(vector: Vec<i32>) -> Result<Vec<i32>, &'static str>;
}
pub mod bubblesort;
pub mod mergesort;