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 |
Tags
- docker
- mobaXTerm
- java
- KAKAO
- go
- github
- 그리디
- 피보나치
- easy
- 백준
- 파이썬
- Codility
- k8s
- Dynamic Programming
- Python
- Top-down
- Singleton Pattern
- LeetCode
- Observer Pattern
- 알고리즘
- cpu scheduling
- Kotlin
- golang
- BubbleSort
- Backjoon
- kubernetes
- Programmers
- GKE
- GCP
Archives
- Today
- Total
To Be Developer
[LeetCode] 217. Contains Duplicate 본문
class Solution(object): def containsDuplicate(self, nums): """ :type nums: List[int] :rtype: bool """ # 비어있는 딕셔너리 변수 선언 dic = {} # 파라미터 nums 를 하나하나 돌려본다. for i in nums : # 만약 dicCount 의 return 값이 True 이면 중복임 if self.dicCount(dic, i) == True: # 더 이상 진행할 필요없으므로 return True return True # 반복문을 무사히 빠져나오면 중복된 적이 없으므로 False return False # [{num, count}] def dicCount(self, dic, key): # 이미 존재하는 키이면 value를 1 증가 try : dic[key] += 1 return True # 존재하지 않으면 처음 나온 것이므로 1을 대입 except : dic[key] = 1 return False if __name__ == "__main__": inData = [1,2,3,1] sl = Solution().containsDuplicate(inData)
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 263. Ugly Number (0) | 2019.03.23 |
---|---|
[LeetCode] 9. Palindrome Number.py (0) | 2019.03.22 |
[LeetCode] Reverse Words in a String (0) | 2019.03.19 |
[LeetCode] 231. Power of Two (0) | 2019.03.13 |
[LeetCode] 225. Implement Stack using Queues (0) | 2019.03.13 |