728x90
def solution(clothes):
answer = 1
tmp={}
for cloth in clothes:
if cloth[1] in tmp:
tmp[cloth[1]]+=1
else:
tmp[cloth[1]]=1
for k in tmp.values():
answer*=k+1
return answer-1
'STUDY > Algorithm' 카테고리의 다른 글
[프로그래머스] LEVEL2 타겟 넘버, python3, 깊이/너비 우선 탐색(DFS/BFS) (0) | 2019.11.20 |
---|---|
[프로그래머스] LEVEL2 멀쩡한 사각형,python3, 서머코딩/윈터코딩(2019) (0) | 2019.11.19 |
[프로그래머스] LEVEL2 숫자 야구, python3, 완전탐색 (0) | 2019.11.18 |
[프로그래머스] LEVEL2 구명보트, python3, 탐욕법(greedy) (0) | 2019.11.14 |
[프로그래머스] LEVEL2 H-Index, python3, 정렬 (0) | 2019.11.14 |