JAVA_프로그래머스_PCCE 기출문제8번_창고 정리 풀이 class Solution { public String solution(String[] storage, int[] num) { int num_item = 0; String[] clean_storage = new String[storage.length]; int[] clean_num = new int[num.length]; for(int i=0; i
원문 링크 : JAVA_프로그래머스_PCCE 기출문제8번_창고 정리