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
- LeetCode
- POD
- vuejs
- 도커
- 오픈시프트
- OpenShift
- fastapi
- 머신러닝
- Docker
- 로깅
- 리트코드
- fast api
- 솔루션조사
- Machine Learning
- 컨설턴트
- SpringBoot
- 생성형 AI
- 메세지큐
- Redis
- 생성형
- jpa
- GPT
- kubernetes
- vue.js
- BFS
- Python
- 쿠버네티스
- LLaMa
- 컨설팅
- k8s
Archives
- Today
- Total
수 많은 우문은 현답을 만든다
(Easy) Single Number 본문
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
You must implement a solution with a linear runtime complexity and use only constant extra space.
Example 1:
Input: nums = [2,2,1]
Output: 1
Example 2:
Input: nums = [4,1,2,1,2]
Output: 4
Example 3:
Input: nums = [1]
Output: 1
풀이
더보기
class Solution:
def singleNumber(self, nums: List[int]) -> int:
dic = {}
for i in nums:
# dic is None 은 빈값이 왔을때 오류를 뱉는다.
if dic.get(i) is None:
dic[i] = 1
else:
dic[i] += 1
for i in nums:
if dic[i] == 1:
return i
'코딩테스트 > Dictionaries' 카테고리의 다른 글
(Hard) Sherlock and Anagrams (0) | 2023.12.15 |
---|---|
(Easy) Number of 1 Bits (0) | 2023.06.18 |
(Easy) 애너그램 유효성 검사 (0) | 2023.06.05 |