[JavaScript] 프로그래머스 위장 LEVEL2

김예진·2021년 1월 18일
0

코딩 테스트

목록 보기
18/42

문제출처

function solution(clothes) {
    let answer = 1;
    let hash = {};
    
    for (const [name, kind] of clothes) {
        hash[kind] = hash[kind] ? hash[kind] + 1 : 1;
    }
    
    for (const key in hash) answer *= (hash[key] + 1);
    
    return answer - 1;
}

0개의 댓글