HTMLify
LeetCode - Check if the Sentence Is Pangram - Python
Views: 161 | Author: abh
class Solution:
def checkIfPangram(self, sentence: str) -> bool:
return len(set(sentence)) == 26
class Solution:
def checkIfPangram(self, sentence: str) -> bool:
return len(set(sentence)) == 26