/// Check pangram
///
/// Checks whether a given string is a pangram, meaning it contains every letter of the English alphabet at least once.
///
/// # Examples
///
/// Basic usage:
/// ```
/// let result = algorithmz::string::check_pangram("The quick brown fox jumps over the lazy dog").unwrap();
/// assert_eq!(result, true);
/// ```