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")); }