[9/12] 위장

이경준·2021년 9월 12일
0

코테

목록 보기
104/140
post-custom-banner

레벨2 문제
해시

코드

def solution(clothes):
    dic = {}
    
    for name, kind in clothes:
        # 안들어있으면
        if kind not in dic:
            dic[kind] = []
            dic[kind].append(name)
        # 들어있으면
        else:
            dic[kind].append(name)
    
    ssum = 1
    for i in dic:
        temp = len(dic[i])
        ssum *= ( len(dic[i]) + 1)
        
    ssum -= 1
    return ssum

로직

  1. 딕셔너리에 카테고리 별로 분류
  2. 횟수 세기

피드백

  • 조합 공식 공부가 필요할 듯
profile
The Show Must Go On
post-custom-banner

0개의 댓글