본문 바로가기
python-algorithm

Leetcode 1832. Check if the Sentence Is Pangram

by 무적김두칠 2021. 8. 17.

1
2
3
4
class Solution:
    def checkIfPangram(self, sentence: str-> bool:
        if len(set(sentence))==26return True
        elsereturn False
cs

알파벳이 적어도 1번씩은 다 쓰여야하고 중복이 있으면 안됨

반응형

댓글