Python으로 구현한 86491번 최소직사각형 문제 풀이입니다. https://programmers.co.kr/learn/courses/30/lessons/86491 코딩테스트 연습 - 최소직사각형 [[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 def solution(sizes) : max_weight, max_height = 0, 0 for a, b in sizes : if a < b : a, b = b, a if max_weight < a : max_weight = a if max_height < b : max_height = b ret..