코트카타16) x만큼 간격이 있는 n개의 숫자나의 풀이import java.util.*;class Solution { public long[] solution(int x, int n) { long[] answer = {}; ArrayList list = new ArrayList(); for (int j = 1; j 사실 값을 구하는 것 자체는 할 수 있었는데list의 개념에 대해 익숙하지 않아서쉽지 않았다. 다른 분들의 풀이import java.util.*;class Solution { public static long[] solution(int x, int n) { long[] answer = new long[n]; answer[..