링크텍스트
def solution(sizes): x = 0 y = 0 n = len(sizes) for i in range(n): xi = min(sizes[i]) yi = max(sizes[i]) x = max(x,xi) y = max(y,yi) answer = x*y return answer