Skip to main content

Check for Pangram

JUNIOR

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:true
Input 2:{"str":"Hello World"}
Output 2:false

Loading editor...

Run your code to see results

Click the Run button above