x만큼 간격이 있는 n개의 숫자 Lv. 1

박영준·2022년 11월 21일
0

코딩테스트

목록 보기
11/300
class Solution {
    public long[] solution(int x, int n) {
        long[] answer = {};
        return answer;
    }
}

해결법

방법 1

class Solution {
    public long[] solution(int x, int n) {
    	//배열 생성
    	//n의 개수만큼 배열이 만들어지니까 n의 개수의 배열을 생성
        long[] answer = new long[n];
        
        for (int i = 0; i < n; i++) {
        	//int범위를 넘어가므로 long 으로 바꿔줘야함
            //배열은 0부터 시작하므로, i+1을 해줌
            answer[i] = (long) x * (i + 1);
        }
        
        return answer;
    }
}

x만큼 간격이 있는 n개의 숫자 Lv. 1

profile
개발자로 거듭나기!

0개의 댓글