더 맵게 (1) 썸네일형 리스트형 프로그래머스 - 더맵게 결과 코드와 과정출력 public static int solutionOfSpicy(int [] scoville, int K) { PriorityQueue heap = new PriorityQueue(Arrays.stream(scoville) .mapToObj(Integer::valueOf).collect(Collectors.toList())); int answer = 0; while( ! heap.isEmpty()) { if(heap.size() 이전 1 다음