[프로그래머스#JS] 단속 카메라

dongwon·2021년 2월 14일
0

문제

https://programmers.co.kr/learn/courses/30/lessons/42884

코드

function solution(routes) {
  routes = routes.sort((a, b) => a[1] - b[1]);

  console.log(routes);

  let ans = 1;
  let temp = routes[0][1];

  for (let i = 0; i < routes.length; i++) {
    if (routes[i][0] > temp) {
      temp = routes[i][1];
      ans++;
    }
  }

  return ans;
}

느낀점

  • 구현은 쉽지만 아이디어 생각하는데 시간 좀 걸린 문제
profile
데이원컴퍼니 프론트엔드 개발자입니다.

0개의 댓글