algorithmz 1.0.6

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use algorithmz::map::is_isomorphic;

#[test]
fn test_is_isomorphic_true() {
    assert!(is_isomorphic("egg","add"));
}

#[test]
fn test_is_isomorphic_false() {
    assert!(!is_isomorphic("foo","bar"));
}