1 2 3 4 5 6
use algorithmz::map::is_anagram; #[test] fn test_is_anagram() { assert!(is_anagram("anagram", "nagaram")); }