[프로그래머스 Lv.3] Summer/Winter Coding(~2018) - 기지국 설치

김민지·2023년 8월 14일
0

✨ 문제 ✨


✨ 정답 ✨

function solution(n, stations, w) {
    let answer = 0;
    let index=1;

    for (let i=0;i<stations.length;i++){
        if (stations[i]-w>0){
            answer+=Math.ceil(((stations[i]-w)-index)/(w*2+1))
        }
        index=stations[i]+w+1;
    }
    if (index-1<n){
        answer+=Math.ceil((n-(index-1))/(w*2+1))
    }
    return answer;
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

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

0개의 댓글

관련 채용 정보