카운트 업1 [프로그래머스] Lv.0 카운트 업 - 자바(java) 문제 설명 정수 start_num와 end_num가 주어질 때, start_num부터 end_num까지의 숫자를 차례로 담은 리스트를 return하도록 solution 함수를 완성해주세요. 내가 작성한 답 import java.util.*; class Solution { public List solution(int start_num, int end_num) { List answer = new ArrayList(); for(int i=start_num; i 2023. 8. 26. 이전 1 다음