Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 상가수익률계산기
- 릿코드 파이썬
- LeetCode
- 파이썬릿코드풀기
- python 릿코드
- 코틀린기초
- 파이썬릿코드
- 릿코드
- leetcode 풀기
- 릿코드 풀기
- python priority queue
- binary search
- leetcode풀기
- 파이썬알고리즘
- 파이썬 알고리즘 풀기
- 잇츠디모
- leetcode풀이
- 파이썬 프로그래머스
- python 알고리즘
- 파이썬 알고리즘
- python xor
- 릿코드풀기
- 릿코드풀이
- 파이썬 릿코드
- 알고리즘풀이
- 알고리즘풀기
- 파이썬알고리즘풀기
- python sorted
- python zip_longest
- python Leetcode
Archives
- Today
- Total
목록pangram (1)
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1832. Check if the Sentence Is Pangram
1832. Check if the Sentence Is Pangram https://leetcode.com/problems/check-if-the-sentence-is-pangram/ 문제) 솔루션1) 각 알파벳을 해쉬에 저장 sentence에서 문자를 해쉬에서 key 값 서치해서 있으면 삭제 해쉬의 사이즈가 0이면 pangram을 만족하기 때문에 True를 리턴, 아니면 False class Solution: def checkIfPangram(self, sentence: str) -> bool: alphabets = 'abcdefghijklmnopqrstuvwxyz' d = {} for c in alphabets: d[c] = None for c in sentence: if c in d: del d[c..
알고리즘/LeetCode
2021. 11. 3. 06:30