| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 화상영어
- Problem Solving
- 운동
- realclass
- 링피트
- 미드시청
- 3줄정리
- 잡생각
- 읽기
- 영어원서읽기
- Daily Challenge
- 쓰릴오브파이트
- 괜찮음
- 만화도
- 매일
- 뭐든
- 스탭퍼
- 프로젝트
- English
- FIT XR
- 영어공부
- 월간
- 10분
- 리얼 클래스
- 30분
- Writing
- 개발자
- 사이드
- 파비최
- leetcode
Archives
- Today
- Total
파비의 매일매일 공부기록
Today's Challenge 본문
https://leetcode.com/problems/unique-number-of-occurrences/
Unique Number of Occurrences - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
Counter를 쓰면 좀 더 간편하게 풀수 있는걸로 알고는 있는데,
나는 dictionary가 편해서 그냥 그걸로 품.
class Solution:
def uniqueOccurrences(self, arr: List[int]) -> bool:
d = {}
for ar in arr:
if not d.get(ar):
d[ar] = 1
continue
d[ar] += 1
vv = d.values()
dd = {}
for v in vv:
if not dd.get(v):
dd[v] = 1
continue
return False
return True반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| Today's Challenge (0) | 2022.12.02 |
|---|---|
| Today's Challenge (0) | 2022.12.01 |
| Today's Challenge (0) | 2022.11.29 |
| Today's Challenge (0) | 2022.11.28 |
| Today's Challenge (0) | 2022.11.27 |
Comments