algorithmz 1.1.9

This is the corresponding implemenation of the python module of the same name.
Documentation
//! `map`
//!
//! The `map` module containing queue related algorithms

/// The `is_anagram` algorithm
pub mod is_anagram;
pub use is_anagram::is_anagram;
/// The `is_isomorphic` algorithm
pub mod is_isomorphic;
pub use is_isomorphic::is_isomorphic;
/// The `longest_common_subsequence` algorithm
pub mod longest_common_subsequence;
pub use longest_common_subsequence::longest_common_subsequence;
/// The `longest_palindromic_subsequence` algorithm
pub mod longest_palindromic_subsequence;
pub use longest_palindromic_subsequence::longest_palindromic_subsequence;
/// The `is_valid_sudoku` algorithm
pub mod is_valid_sudoku;
pub use is_valid_sudoku::is_valid_sudoku;
/// The `word_pattern` algorithm
pub mod word_pattern;
pub use word_pattern::word_pattern;