algo/src/algorithms/mod.rs
Jan Christian Grünhage 62f1b27dff refactor: cargo fmt
2017-08-27 17:26:01 +02:00

9 lines
153 B
Rust

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