C# 기지국 설치 / 프로그래머스 [Lv.3]
출처: 프로그래머스 코딩 테스트 연습 https://school.programmers.co.kr/learn/courses/30/lessons/12979 나의 풀이 public int solution(int n, int[] stations, int w) { int answer = 0; int width = (w * 2 + 1); // station을 순회하면서 station의 범위에 닿지않은 chunk를 범위로 나눠준다. int index = 1; foreach(int s in stations) { int chunkCount = (s - w) - index; if(chunkCount > 0) answer += (chunkCount + width - 1) / width; index = s + w + 1; /..