[프로그래머스][Java] 프로세스 - level 2
·
ProblemSolve
문제 보기 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr 풀이 방법그냥 큐, 혹은 배열을 사용하려 하면 코드가 길어지지만 Java에서는 우선순위 큐(PriorityQueue)를 제공하기 때문에 비교적 짧은 코드로 구현이 가능하다. 1. PriotityQueue에 옮겨 닮기class Solution { public int solution(int[] priorities, int location) { // 0. Priority Queue에 옮겨 담기. PriorityQueue pq = new PriorityQueue(Collections..