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 | 31 |
Tags
- 코로나19
- Real or Not? NLP with Disaster Tweets
- 데이콘
- 편스토랑
- 백준
- 프로그래머스 파이썬
- dacon
- Baekjoon
- 캐치카페
- Kaggle
- PYTHON
- Git
- 금융문자분석경진대회
- Docker
- SW Expert Academy
- AI 경진대회
- gs25
- 자연어처리
- leetcode
- 더현대서울 맛집
- ChatGPT
- hackerrank
- 맥북
- programmers
- 파이썬
- ubuntu
- 우분투
- 편스토랑 우승상품
- github
- 프로그래머스
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 해시 : 위장 (Python) 본문
728x90
반응형
1일 1문제 65일차!
오늘의 문제는 프로그래머스 해시의 위장입니다.
Solution
def solution(clothes):
answer = 1
spy_clothes_dict = {}
for cloth in clothes:
if cloth[1] not in spy_clothes_dict.keys():
spy_clothes_dict[cloth[1]] = 1
else:
spy_clothes_dict[cloth[1]] = spy_clothes_dict[cloth[1]] + 1
all_values = list(spy_clothes_dict.values())
values_without_zero = [val for val in all_values if val != 0]
for value in values_without_zero:
answer = answer * (value + 1)
answer = answer - 1
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 스택/큐 : 다리를 지나는 트럭 (Python) (0) | 2020.04.13 |
---|---|
[BaekJoon] 1264번 : 모음의 개수 (Python) (0) | 2020.04.12 |
[BaekJoon] 1912번 : 연속합 (Python) (0) | 2020.04.10 |
[Programmers] 힙 : 디스크 컨트롤러 (Python) (0) | 2020.04.09 |
[BaekJoon] 9465번 : 스티커 (Python) (1) | 2020.04.08 |
Comments