본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] x만큼 간격이 있는 n개의 숫자

by lanuarius19 2022. 4. 23.
728x90

프로그래머스 1단계
x만큼 간격이 있는 n개의 숫자

https://programmers.co.kr/learn/challenges

 

문제 설명

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

 

 

 

풀이

 

class Solution {
  public long[] solution(long x, int n) {
      long[] answer;
      answer = new long[n];
      
      for(int i=0; i<answer.length; i++) {
          answer[i] = (i+1)*x;
      }
      return answer;
  }
}
 
728x90

댓글