//! `string`
//!
//! `string` is a submodule containing algorithms for string manipulation
/// The `add_binary` algorithm
pub use add_binary;
/// The `alphabet_board_path` algorithm
pub use alphabet_board_path;
/// The `atbash_cipher` algorithm
pub use atbash_cipher;
/// The `breaking_bad` algorithm
pub use breaking_bad;
/// The `caesar_cipher` algorithm
pub use caesar_cipher;
/// The `check_pangram` algorithm
pub use check_pangram;