//! Anagram Check (Unicode-safe, Production-Grade)
//!
//! Checks if two string slices are anagrams (contain the same characters with the same frequencies).
//!
//! # Arguments
//! * `a` - The first string slice.
//! * `b` - The second string slice.
//!
//! # Returns
//! * `bool` - True if the strings are anagrams, false otherwise.
//!
//! # Example
//! ```rust
//! use pofk_algorithm::string_algorithms::anagram_check::anagram_check;
//! assert!(anagram_check("listen", "silent"));
//! assert!(!anagram_check("hello", "world"));
//! assert!(anagram_check("a😊b", "b😊a"));
//! ```
use HashMap;