[프로그래머스 Lv.3] 탐욕법(Greedy) - 단속카메라

김민지·2024년 2월 5일
0

✨ 문제 ✨

✨ 정답 ✨

function solution(routes) {
    let array=routes.sort((a,b)=>a[0]-b[0])
    let end=array[0][1];
    let count=1;
    console.log(array)
    for (let i=1;i<array.length;i++){
        if (end<array[i][0]){
            count+=1;
            end=array[i][1];
        }
        if (end>array[i][1]){
            end=array[i][1]
        }
    }
   return count
}

🧵 참고한 정답지 🧵

💡💡 기억해야 할 점 💡💡

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

0개의 댓글

관련 채용 정보