티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42578
내 풀이1
import collections
def solution(clothes):
answer = 1
kind = []
for a, b in clothes:
kind.append(b)
kind = collections.Counter(kind)
for i in kind.values():
answer *= (i + 1)
return answer - 1
풀이
- 일단 clothes 리스트에서 옷의 종류만 따로 리스트에 저장
- kind를 딕셔너리 형태로 변환
- kind에서 value값만 빼서 경우의 수 계산
경우의 수 계산
(옷의 개수 + 1)을 전부 곱하고 마지막에 1빼기
옷의 개수에서 +1을 한 이유는 입지 않는 경우도 있기 때문
내 풀이2
def solution(clothes):
answer = 1
dic = dict()
for name, kind in clothes:
if kind not in dic:
dic[kind] = 1
else:
dic[kind] += 1
for val in dic.values():
answer *= (val + 1)
return answer - 1
처음부터 딕셔너리를 한개 만들고 딕셔너리에 [옷의 종류, 종류의 개수]를 넣어줬음
다른 사람 풀이
from collections import Counter
def solution(clothes):
counter_each_category = Counter([cat for _, cat in clothes])
all_possible = 1
for key in counter_each_category:
all_possible *= (counter_each_category[key] + 1)
return all_possible - 1
분석
clothes에서 옷종류만 빼서 counter로 변경하는 코드를 좀 더 간결하게 구현했다.
counter_each_category[key]를 사용해 특정 key값에 해당하는 value값을 구했다.
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[C++]프로그래머스 - [1차]다트게임(level1) (0) | 2020.02.19 |
---|---|
[Python][해시] 프로그래머스 - 베스트 앨범(Level3) (0) | 2020.02.16 |
[Python] 프로그래머스 - 전화번호 목록(Level2) (1) | 2020.02.16 |
[Python]프로그래머스 - 완주하지 못한 선수(level1) (0) | 2020.02.15 |
[Python]프로그래머스 - 두 정수 사이의 합(level1) (0) | 2020.02.10 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- programmers
- SWExpert
- 프로그래머스
- 우선순위큐
- 재귀
- 완전탐색
- C++
- Python
- 2020 KAKAO BLIND RECRUITMENT
- 괄호
- 힙
- 정렬
- 2019 Kakao Blind Recruitment
- 파이썬
- 백준
- 해시
- dictionary
- 순열
- left join
- 문자열
- 구현
- BOJ
- 스택
- SW Expert
- 딕셔너리
- combination
- hash
- Permutation
- 문자열처리
- 코딩테스트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함