프로그래머스5 [프로그래머스] 프린터 큐를 사용해 푸는 문제입니다 public class PrinterQueue { public static void main(String[] args) throws IOException{ int[] arr = new int[] {1, 1, 9, 1, 1, 1}; int location = 0; PrinterQueue pq = new PrinterQueue(); int result = pq.solution(arr, location); System.out.print("RESULT:"+result); } public int solution(int[] arr, int location) { int answer = 1; Queue queue = new LinkedList(); for(int i=0; i 2019. 4. 2. 이전 1 2 다음