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

김민지·2023년 12월 3일
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;
        }
    })
    for (let key in clothesSummary){
        answer*=(clothesSummary[key]+1)
    }
    return answer-1;
}

🧵 참고한 정답지 🧵

https://velog.io/@eldoradodo/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-JavaScript-%EC%9D%98%EC%83%81

💡💡 기억해야 할 점 💡💡

https://velog.io/@sean2337/JavaScript-%ED%95%B4%EC%8B%9C-%EC%A0%81%EC%9A%A9-%EB%B0%A9%EB%B2%95

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

0개의 댓글

관련 채용 정보