[프로그래머스] x만큼 간격이 있는 n개의 숫자 💡 문제 💡 나의 풀이 ( 점수 : 85.7 / 100 ) class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; for(int i = 0; i 코딩테스트 2020.04.02