class Solution {
public int solution(int[][] sizes) {
int answer = 0;
return answer;
}
}
class Solution {
public int solution(int[][] sizes) {
int longest = 1;
int shortest = 1;
for (int i = 0; i < sizes.length; i++) {
int longer = Math.max(sizes[i][0], sizes[i][1]); // 긴 길이
int shorter = Math.min(sizes[i][0], sizes[i][1]); // 짧은 길이
if (longest < longer) { // 긴 길이 中 최대값
longest = longer;
}
if (shortest < shorter) { // 짧은 길이 中 최대값
shortest = shorter;
}
}
return longest * shortest;
}
}