진박사의 일상

[프로그래머스] 해시 문제 - 위장 본문

프로그래밍/코딩테스트 공부

[프로그래머스] 해시 문제 - 위장

진박사. 2021. 9. 10. 07:37
from collections import defaultdict
def solution(clothes):
    answer = 1
    kinds_of_clothes = defaultdict(int)
    for cloth in clothes:
        kinds_of_clothes[cloth[1]] += 1
    
    for i in [v for v in kinds_of_clothes.values()]:
        answer *= (i+1)
    return answer-1

10분컷~ 이제 이정도 해시 문제는 쉽게 풀듯