algorithmz 1.2.8

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

#[test]
fn test_is_anagram() {
    assert!(is_anagram("anagram", "nagaram"));
}