[프로그래머스] 위클리 챌린지 8주차

고재욱·2021년 10월 4일
0

Programmers

목록 보기
4/5

❓ 문제 ❓
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;
}

0개의 댓글

관련 채용 정보