코린이의 소소한 공부노트

[프로그래머스/Lv.0] 카운트 업 본문

코딩테스트 풀이/JAVA

[프로그래머스/Lv.0] 카운트 업

무지맘 2023. 4. 24. 18:22

1. Input, Output, Example

- start부터 end까지의 숫자를 차례로 담은 리스트를 반환

 

2. Constraint

1) 0 start end 50

 

3. Code

1) 첫 코드(2023/04/24)

class Solution {
    public int[] solution(int start, int end) {
        int[] answer = new int[end-start+1];
        for(int i=0 ; i<answer.length ; i++)
            answer[i] = start+i;
        return answer;
    }
}