https://school.programmers.co.kr/learn/courses/30/lessons/181883
정답
class Solution {
public int[] solution(int[] arr, int[][] queries) {
for(int i=0; i<queries.length; i++)
{
int s = queries[i][0];
int e = queries[i][1];
for(int j=s; j<=e; j++)
{
arr[j]++;
}
}
return arr;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 조건에 맞게 수열 변환하기 2 (0) | 2024.04.06 |
---|---|
[JAVA] 프로그래머스 - 조건에 맞게 수열 변환하기 1 (0) | 2024.04.06 |
[JAVA] 프로그래머스 - n보다 커질 때 까지 더하기 (0) | 2024.04.05 |
[JAVA] 프로그래머스 - 할 일 목록 (1) | 2024.04.05 |
[JAVA] 프로그래머스 - 5명씩 (1) | 2024.04.05 |