프로그래머스 택배상자

    [프로그래머스, 131704] 택배상자 (java)

    https://school.programmers.co.kr/learn/courses/30/lessons/131704 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 메모리: 79.4 MB, 시간: 1.45 ms사용 알고리즘: 자료구조, 스택import java.util.*;class Solution { public int solution(int[] order) { int answer = 0; int pointer = 1; // 컨테이너 벨트의 가장 앞에 있는 택배 번호 Deque deq = new ArrayDeque(); // 보조 ..