글
프로그래머스 C# x만큼 간격이 있는 n개의 숫자(using System.Collections.Generic, List.Add)
프로그래밍
2023. 1. 23. 23:18
728x90
SMALL
using System.Collections.Generic;
public class Solution {
public long[] solution(long x, int n) {
long[] answer = new long[n];
List<long> list = new List<long>();
for(int i = 1;i<=n;i++)
{
list.Add(i*x);
}
for(int j = 0;j<n;j++)
{
answer[j] = list[j];
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 겹치는 선분의 길이(배열 선언, JAVA) (0) | 2023.01.24 |
---|---|
프로그래머스 C# 직사각형 별찍기(Console.Write, WriteLine) (0) | 2023.01.24 |
프로그래머스 C# 행렬의 덧셈(GetLength, 이중 배열 덧셈) (0) | 2023.01.23 |
프로그래머스 C# 최솟값 구하기(배열 곱의 최솟값, Reverse, Sort of Array) (0) | 2023.01.23 |
프로그래머스 C# 피보나치 수(점화식) (0) | 2023.01.23 |