Check for Pangram
Check for Pangram
Check if a string is a pangram (contains all letters of alphabet).
Requirements:
- Check if string contains all 26 letters
- Ignore case and non-letter characters
- Return true if pangram, false otherwise
Example:
Input: "The quick brown fox jumps over the lazy dog"
Output: true
Input: "Hello World"
Output: false
Examples:
Input 1:
{"str":"The quick brown fox jumps over the lazy dog"}Output 1:
trueInput 2:
{"str":"Hello World"}Output 2:
falseLoading editor...
Run your code to see results
Click the Run button above