algorithmz 1.3.0

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
use algorithmz::stack::longest_path;

#[test]
fn test_longest_path() {
    let result = longest_path("dir\\n\\tfile.txt");
    assert_eq!(result, 15);
}