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

설정

트랙백

댓글