728x90
https://school.programmers.co.kr/learn/courses/30/lessons/161989
소스코드
using System;
public class Solution {
public int solution(int n, int m, int[] section)
{
int answer = 0;
int num = 0;
for (int i = 0; i < section.Length; i++)
{
if (section[i] > num)
{
num = (section[i] + m) - 1;
answer++;
}
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 카드 뭉치 C# (0) | 2023.06.12 |
---|---|
※[프로그래머스]Lv.1 대충 만든 자판 C# (0) | 2023.06.12 |
※[프로그래머스]Lv.1 공원 산책 C# (0) | 2023.06.09 |
※[프로그래머스]Lv.1 크기가 작은 부분문자열 C#(long.parse) (0) | 2023.06.08 |
※[프로그래머스]Lv.1 달리기 경주 C#(dictionary) (0) | 2023.06.08 |