컴공생의 다이어리

[프로그래머스] 위장 - 자바스크립트(JS) 본문

Development/Algorithm & Coding Test

[프로그래머스] 위장 - 자바스크립트(JS)

컴공 K 2022. 8. 29. 00:01

[프로그래머스] 위장 - 자바스크립트(JS)

 

 

 

function solution(clothes) {
    let answer = 1;
    const obj = {};

    for ([n, t] of clothes) obj[t] = (obj[t] || 0) + 1;
    for (let key in obj) answer *= obj[key] + 1;

    return answer - 1;
}

 

 

 

728x90
Comments