Pangram
Level EASY
A word or a sentence is called a pangram if all the characters of this language appear in it at least once. You are given a string s consisting of lowercase and uppercase Latin letters. Check whether this string is a pangram. Print "YES" or "NO".
We say that the string contains a letter of the Latin alphabet, if this letter occurs in the string in either uppercase or in lowercase.
Input format :
Output format :
Constraints :
1 <= n <= 100
Sample Input 1 :
Sample Output 1 :
Sample Input 2 :
Sample Output 2 :
YES
Comments
Post a Comment
Please give us your valuable feedback