from itertools import combinations
def solution(clothes):
_dict = {}
for _set in clothes:
_category = _set[1]
if _category in _dict:
_dict[_category] += 1
else:
_dict[_category] = 1
answer = 1
for i in _dict.values():
answer *= (i + 1)
answer = answer - 1
return answer
'Python > 프로그래머스 코딩테스트 연습' 카테고리의 다른 글
힙 / 더 맵게 (0) | 2020.09.10 |
---|---|
스택&큐 / 기능개발 (0) | 2020.09.10 |
스택&큐 / 주식가격 (0) | 2020.09.10 |
해시 / 베스트 앨범 (0) | 2020.09.10 |
해시 / 전화번호 목록 (0) | 2020.09.10 |