Check if the Sentence Is Pangram Problem
Check if the Sentence Is Pangram Problem — ExecCode Easy DSA Practice
Solve the Check if the Sentence Is Pangram problem on ExecCode. Free online easy DSA practice in Hashing. Write and run code in Java, C++, Python — no signup required to run.
Problem description
Description You are given a string sentence containing only lowercase English letters, returntrueifsentenceis a pangram, orfalseotherwise. Your task is to a pangram is a sentence where every letter of the English alphabet appears at least once. Return the required answer exactly as shown in the examples.
Examples
Input {"s": "thequickbrownfoxjumpsoverthelazydog"}; Output True. Input {"s": "leetcode"}; Output False. Input {"s": "abcdefghijklmnopqrstuvwxy"}; Output False
Constraints
1 <= sentence.length <= 1000 sentence consists of lowercase English letters.
Practice Check if the Sentence Is Pangram free on ExecCode. Browse DSA problems, topic map, and placement guides.