rust-algorithm 0.1.4

algorithm
Documentation
1
2
3
4
5
6
7
8
use rust_algorithm::Algorithm;

#[test]
fn test() {
    let result = Algorithm::gcd_of_strings(String::from("ABCABC"), String::from("ABC"));
    println!("{}", result.unwrap());
    // assert_eq!("hello", hello());
}