tadm 0.1.1

A collection of algorithms and data structures wrote out while reading The Algorithm Design Manual book
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod sort;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let result = 2 + 2;
        assert_eq!(result, 4);
    }
}