728x90
프로그래머스 1단계
x만큼 간격이 있는 n개의 숫자
https://programmers.co.kr/learn/challenges
문제 설명
풀이
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
'알고리즘 > 프로그래머스 1단계' 카테고리의 다른 글
[프로그래머스] 콜라츠 추측 (0) | 2022.04.23 |
---|---|
[프로그래머스] 짝수와 홀수 (0) | 2022.04.23 |
[프로그래머스] 평균 구하기 (0) | 2022.04.23 |
[프로그래머스] 자릿수 더하기 (0) | 2022.04.23 |
[프로그래머스] 수박수박수박수박수박수? (0) | 2022.04.23 |
댓글