728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12954
using System.Collections.Generic;
public class Solution {
public long[] solution(int x, int n) {
List<long> answer = new List<long>();
long su = x;
for (int i = 0; i < n; i++)
{
answer.Add(su);
su += x;
}
return answer.ToArray();
}
}
반응형
'프로그래머스_C# > Level_1' 카테고리의 다른 글
[프로그래머스 C#] 평균 구하기 (0) | 2021.06.27 |
---|---|
[프로그래머스 C#] 하샤드 수 (0) | 2021.06.18 |
[프로그래머스 C#] 핸드폰 번호 가리기 (0) | 2021.06.04 |
[프로그래머스 C#] 행렬의 덧셈 (0) | 2021.05.23 |
[프로그래머스 C#] 직사각형 별찍기 (0) | 2021.05.16 |