class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
for(int i=0; i<answer.length; i++){
answer[i]= (long)x*(i+1);
}
return answer;
}
'공부기록 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 정수 제곱근 (0) | 2023.08.27 |
---|---|
[프로그래머스] 음양 더하기 (0) | 2023.08.25 |
[프로그래머스] 피보나치 수 (0) | 2023.08.24 |
[프로그래머스] 자연수 뒤집어 배열로 만들기 (0) | 2023.08.24 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2023.08.22 |