function solution(weights) {
let answer = 0;
// 오름차순으로 정렬
weights.sort((a,b)=>a-b);
let weightCount={};
// 동일한 것 있는지 확인하고 갯수 세기
weights.forEach(weight=>{
weightCount[weight]=(weightCount[weight]||0)+1;
})
for (let i=0;i<weights.length;i++){
const a = weights[i];
// 동일한 무게를 가진 쌍일 경우
if (weightCount[a]>1){
answer+=weightCount[a]-1;
}
// 4a/3, 4a/2, 3a/4, 3a/2, 2a/4, 2a/3에 해당하는 원소가 존재하는지 확인
const ratios=[4/3, 4/2, 3/4, 3/2, 2/4, 2/3];
for (let ratio of ratios){
const b=a*ratio;
if (weightCount[b]){
answer+=weightCount[b];
}
}
weightCount[a]--;
}
return answer;
}
내 코드 설명
주석 참고