LeetCodeCheck if the Sentence Is PangramCheck if the Sentence Is PangramEasyHash TableStringSolution export function checkIfPangram(sentence: string): boolean { return new Set(sentence).size === 26; }LeetCodeCheck if the Sentence Is Pangramhttps://leetcode.com/problems/check-if-the-sentence-is-pangram