[프로그래머스 Lv.2] 의상

김민지·2024년 5월 19일
0

✨ 정답 ✨

function solution(clothes) {
    var answer = 1;
    let clothesSummary={};
    clothes.map((el)=>{
        let [type, name]=el;
        if (clothesSummary.hasOwnProperty(name)){
            clothesSummary[name]+=1;
        }else{
            clothesSummary[name]=1;
        }
    })
    console.log(clothesSummary)
    for (let key in clothesSummary){
        answer*=(clothesSummary[key]+1)
    }
    
    return answer-1;
}

🧵 참고한 정답지 🧵

💡💡 해설 💡💡

내 코드 설명
종류별로 몇 벌씩 있는지 정리하고 각각의 의상 수+1을 모두 곱한 뒤 1을 빼면 된다.

profile
이건 대체 어떻게 만든 거지?

0개의 댓글

관련 채용 정보