https://programmers.co.kr/learn/courses/30/lessons/12954
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Solution {
public long[] solution(int x, int n) {
long iSum = x;
long[] answer = new long[n];
for (int i = 0; i < n; i++) {
answer[i] = iSum;
iSum += x;
}
return answer;
}
}
Colored by Color Scripter
|
나는 iSum이라는 변수를 따로 빼줬지만,
Num 하나만으로 구현한 다른 답안도 많았다.
- D[i] = D[i -1] + Num
- D[i] = Num * i
- 등등
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스]탐욕법(Greedy) : 체육복 (level 1) (java, c++) (0) | 2019.11.08 |
---|---|
[프로그래머스]해시 : 완주하지 못한 선수 (level 1) (0) | 2019.11.08 |
[프로그래머스]연습문제 : 행렬의 덧셈 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 핸드폰 번호 가리기 (level 1) (0) | 2019.11.07 |
[프로그래머스]연습문제 : 하샤드 수 (level 1) (0) | 2019.11.07 |
댓글