728x90
반응형
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
for(int i=1; i<=n; i++){
answer[i-1] = (long)x*i;
}
return answer;
}
}
728x90
반응형
'알고리즘 문제풀이 > Programmers - 자바' 카테고리의 다른 글
프로그래머스 - 정수 제곱근 판별 (0) | 2023.03.25 |
---|---|
프로그래머스 - 자연수 뒤집어 배열로 만들기 (0) | 2023.03.25 |
프로그래머스 - 자릿수 더하기 (0) | 2023.03.25 |
프로그래머스 - 평균 구하기 (0) | 2023.03.25 |
프로그래머스 - 짝수와 홀수 (0) | 2023.03.25 |