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

채종윤·2023년 8월 9일
0

📔 문제 설명

https://school.programmers.co.kr/learn/courses/30/lessons/12954


📝 문제 풀이


💡 내 코드

class Solution {
    public long[] solution(long x, int n) {
        long[] answer = new long[n];
        long result =x;
        for(int i=0 ; i<n; i++){
            answer[i]= x;
              x=  result +x;
            
        }
     
        return answer;
    }
}
profile
안녕하세요. 백앤드 개발자를 목표로 하고 있습니다!

0개의 댓글