We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7885ed9 commit 4f4d074Copy full SHA for 4f4d074
easy/CheckIfTheSentenceIs a Pangram.py
@@ -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