Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Kaggle
- 편스토랑 우승상품
- github
- hackerrank
- 파이썬
- 더현대서울 맛집
- 데이콘
- Real or Not? NLP with Disaster Tweets
- 맥북
- 프로그래머스
- AI 경진대회
- 자연어처리
- programmers
- gs25
- 프로그래머스 파이썬
- 우분투
- Git
- Baekjoon
- PYTHON
- leetcode
- 편스토랑
- dacon
- Docker
- SW Expert Academy
- ubuntu
- 코로나19
- 백준
- 금융문자분석경진대회
- 캐치카페
- ChatGPT
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1748. Sum of Unique Elements (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 leetCode의 1748번 문제인 Sum of Unique Elements 입니다.
👨🏻💻 문제 풀이
collections의 Counter를 활용하여 리스트 내의 각 숫자 들이 각각 몇 번 씩 나오는지 확인 한 뒤
.items를 활용하여 ( 숫자, 등장 횟수 ) 로 바꾼 뒤 각 값들 중에 등장 횟수가 1인 것들의 숫자만 남겨준 뒤
unique_items = [item[0] for item in Counter(nums).items() if item[1] == 1]
sum으로 그 값들을 더한 값을 구하면 끝!
sum(unique_items)
전체 코드는 아래를 참고해주세요.
👨🏻💻 코드 ( Solution )
from collections import Counter
class Solution:
def sumOfUnique(self, nums: List[int]) -> int:
unique_items = [item[0] for item in Counter(nums).items() if item[1] == 1]
return sum(unique_items)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11723번 : 집합 (Python) (0) | 2022.02.07 |
---|---|
[leetCode] 1844. Replace All Digits with Characters (Python) (0) | 2022.02.06 |
[leetCode] 1880. Check if Word Equals Summation of Two Words (Python) (0) | 2022.02.04 |
[leetCode] 1859. Sorting the Sentence (Python) (0) | 2022.02.03 |
[leetCode] 2119. A Number After a Double Reversal (Python) (0) | 2022.02.02 |
Comments