Skip to content

Commit 4f4d074

Browse files
authored
Create CheckIfTheSentenceIs a Pangram.py
1 parent 7885ed9 commit 4f4d074

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#1832. Check if the sentence is a Pangram
2+
class Solution:
3+
def checkIfPangram(self, sentence: str) -> bool:
4+
return len(set(sentence))==26
5+

0 commit comments

Comments
 (0)