https://programmers.co.kr/learn/courses/30/lessons/86491 코딩테스트 연습 - 8주차_최소직사각형 [[10, 7], [12, 3], [8, 15], [14, 7], [5, 15]] 120 [[14, 4], [19, 6], [6, 16], [18, 7], [7, 11]] 133 programmers.co.kr import java.util.Arrays; class Solution { public int solution(int[][] sizes) { for(int[] size : sizes) { Arrays.sort(size); } int x_max = 0; int y_max = 0; for(int i=0; i