Algorithm1 [프로그래머스] 카운트 다운 문제 : https://school.programmers.co.kr/learn/courses/30/lessons/181899 카운트 다운해서 배열에 하나씩 넣은 후 리턴하는 기초적인 문제이다. 솔루션: class Solution { public int[] solution(int start, int end) { int[] answer = {}; if (start 50 || end 50) { return answer; } else if (start == end ) { answer = new int[1]; answer[0] = start; return answer; } else { int size = start - end + 1; answer = new i.. 2023. 8. 13. 이전 1 다음