❓ 문제 ❓
8주차
💯 문제 풀이 💯
각 명함의 가로 세로 길이의 최대, 최소 값중 최대값을 구하면 된다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<vector<int>> sizes) {
int answer = 0;
int width = 0, height = 0;
for (int i = 0; i < sizes.size(); i++) {
int a = max(sizes[i][0], sizes[i][1]);
int b = min(sizes[i][0], sizes[i][1]);
width = max(width, a);
height = max(height, b);
}
return width * height;
}