https://programmers.co.kr/learn/courses/30/lessons/42577 1. 2022.04.01 시도 소요시간: - 분(기억안남) import java.util.*; class Box { Box[] boxes = new Box[10]; boolean isPhone; } class Solution { public boolean solution(String[] phone_book) { Arrays.sort(phone_book); Box wholeBox = new Box(); for (String each: phone_book) { Box temp = wholeBox; for (int i=0; i