문제 설명
정수 start_num와 end_num가 주어질 때, start_num부터 end_num까지의 숫자를 차례로 담은 리스트를 return하도록 solution 함수를 완성해주세요.
제한사항
- 0 ≤ start_num ≤ end_num ≤ 50
입출력 예
start_num | end_num | result |
3 | 10 | [3, 4, 5, 6, 7, 8, 9, 10] |
풀이
class Solution {
public int[] solution(int start_num, int end_num) {
int len = end_num - start_num;
int[] answer = new int[len + 1];
for(int i=0; i<=len; i++) {
answer[i] = i + start_num;
}
return answer;
}
}
'Coding Test > 프로그래머스[JAVA]' 카테고리의 다른 글
[프로그래머스 Lv0.] 181841번 꼬리 문자열 (JAVA) (0) | 2024.10.10 |
---|---|
[프로그래머스 Lv0.] 181835번 조건에 맞게 수열 변환하기 3 (JAVA) (0) | 2024.10.10 |
[프로그래머스 Lv0.] 181944번 홀짝 구분하기 (JAVA) (0) | 2024.10.10 |
[프로그래머스 Lv0.] 181941번 문자 리스트를 문자열로 변환하기 (JAVA) (0) | 2024.10.10 |
[프로그래머스 Lv0.] 181939번 더 크게 합치기 (JAVA) (0) | 2024.10.02 |