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을 빼면 된다.