반응형
출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges
def solution(clothes):
categories = dict()
spi_woredrobe = dict()
answer = 1
for c in clothes:
if not c[1] in spi_woredrobe:
spi_woredrobe[c[1]] = set()
categories[c[1]] = 0
if not c[0] in spi_woredrobe[c[1]]:
spi_woredrobe[c[1]].add(c[0])
categories[c[1]] += 1
for val in categories.values():
answer *= (val + 1)
return answer - 1
반응형
'프로그래머스 > level 2' 카테고리의 다른 글
[프로그래머스] 전화번호 목록 (0) | 2022.04.21 |
---|---|
[프로그래머스] 삼각달팽이 (0) | 2022.04.21 |
[프로그래머스] 더 맵게 (0) | 2022.04.20 |
[프로그래머스] 조이스틱 (0) | 2022.03.10 |
[프로그래머스] 가장 큰 수 (0) | 2022.03.10 |