알고리즘1 [Java] 프로그래머스 [PCCE 기출문제] 10번 / 공원 import java.util.*;class Solution { public int solution(int[] mats, String[][] park) { List matList = new ArrayList(); // mats 를 리스트화 시킨후 오름차순 정렬 Arrays.stream(mats).forEach(matList::add); Collections.sort(matList); int answer = -1; // 공원 첫번째 칸부터 순차적으로 확인 for(int i=0; i 2024. 9. 24. 이전 1 다음