[프로그래머스 Lv.2] 시소 짝꿍

김민지·2024년 6월 5일
0

✨ 정답 ✨

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;
}

🧵 참고한 정답지 🧵

💡💡 해설 💡💡

내 코드 설명
주석 참고

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

0개의 댓글

관련 채용 정보