반응형
https://programmers.co.kr/learn/courses/30/lessons/12954
index 변수형을 long으로 해줘야한다.
int로 하면 마지막 케이스2개가 실패한다.
class Solution {
public long[] solution(int x, int n) {
long[] answer = new long[n];
long index = x;
for(int i=0; i<n; i++){
answer[i] = index;
index += x;
}
return answer;
}
}
반응형
'코딩테스트 > 프로그래머스 1단계' 카테고리의 다른 글
프로그래머스 1단계 - 평균 구하기 (0) | 2021.08.19 |
---|---|
프로그래머스 1단계 - 행렬의 덧셈 (0) | 2021.08.19 |
프로그래머스 1단계 - 하샤드 수 (0) | 2021.08.19 |
프로그래머스 1단계 - 핸드폰 번호 가리기 (0) | 2021.08.19 |
프로그래머스 1단계 - 최대공약수와 최소공배수 (0) | 2021.08.19 |