public int solution(int n, int m, int[] section) {
int roller = section[0];
int cnt = 1;
for (int s : section) {
if (s > roller + m - 1) {
cnt++;
roller = s;
}
}
return cnt;
}
출처:https://school.programmers.co.kr/learn/courses/30/lessons/161989
많은 도움이 되었습니다, 감사합니다.