프로그래머스 코딩테스트 연습 > 해쉬 > 위장


프로그래머스 코딩테스트 연습 > 해쉬 > 위장

문제

prohash4-1.jpg
prohash4-2.jpg

코드

#위장
def solution(clothes):
    wear={}
    for i in clothes:
        if i[1] not in wear:
            wear[i[1]]=[i[0]]
            print(wear)
        else:
            wear[i[1]].append(i[0])
    
    answer = 1
    for i in wear.keys():
        answer*=(len(wear[i])+1)
        
    return answer-1





© 2021.07. by 전은성

Powered by 전은성