HTMLify

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

Comments