LeetCode 1832. Check if the Sentence Is Pangram
Input: sentence = "thequickbrownfoxjumpsoverthelazydog"
Output: true
Explanation: sentence contains at least one of every letter of the English alphabet.Input: sentence = "leetcode"
Output: falseSolution
class Solution {
public:
bool checkIfPangram(string sentence) {
set<char> letters;
for (char ch : sentence) {
letters.insert(ch);
}
return letters.size() == 26;
}
};PreviousLeetCode 1830. Minimum Number of Operations to Make String SortedNextLeetCode 1833. Maximum Ice Cream Bars
Last updated