function solution(clothes) {
let hash = {};
clothes.forEach(([cloth, species]) => (hash[species] = ++hash[species] || 1));
return Object.values(hash).reduce((a, b) => (a + 1) * (b + 1) - 1);
}
Level
프로그래머스 Lv2
Recruitment
function solution(clothes) {
let hash = {};
clothes.forEach(([cloth, species]) => (hash[species] = ++hash[species] || 1));
return Object.values(hash).reduce((a, b) => (a + 1) * (b + 1) - 1);
}