/// Is palindrome?
///
/// Determine if a string is a palindrome, considering only alphanumeric characters and ignoring cases. Multiple approaches are provided.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let result = algorithmz::string::is_palindrome("otto");
/// assert_eq!(result, true);
/// ```