[프로그래머스 Lv.2] 2022 KAKAO TECH INTERNSHIP - 두 큐 합 같게 만들기

김민지·2023년 9월 27일
0

✨ 문제 ✨

✨ 정답 ✨

function solution(queue1, queue2) {
    let sumQ1 = sum(queue1),
        sumQ2 = sum(queue2);
    
    let pointer1 = 0, 
        pointer2 = queue1.length;
    
    const target = (sumQ1 + sumQ2) / 2;
    const queue = [...queue1, ...queue2];
    
    const end = queue1.length * 3;
    
    for (let count = 0; count < end; count++) {
        if (sumQ1 === target) {
            return count;
        }
        
        if (sumQ1 > target) {
            sumQ1 -= queue[pointer1++];
        } else {
            sumQ1 += queue[pointer2++];
        }
    }
    
    return -1;
}

const sum = (arr) => arr.reduce((acc, v) => acc + v, 0);

🧵 참고한 정답지 🧵

https://gurtn.tistory.com/179

💡💡 기억해야 할 점 💡💡

🚒🚒🚒투 포인터 패턴🚒🚒🚒

https://window6kim.tistory.com/24

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

0개의 댓글

관련 채용 정보