Pangram Checking geeks for geeks potd python solution Panagram gfg potd python

Опубликовано: 26 Май 2026
на канале: VS Code
124
0

Given a string s check if it is "Panagram" or not.

A "Panagram" is a sentence containing every letter in the English Alphabet.

Example 1:

Input:
s = "Bawds jog, flick quartz, vex nymph"
Output:
1
Explanation:
In the given input, there
are all the letters of the English
alphabet. Hence, the output is 1.
Example 2:

Input:
s = "sdfs"
Output:
0
Explanation:
In the given input, there
aren't all the letters present in the
English alphabet. Hence, the output
is 0