250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 c++)위클리 챌린지 8주차 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/86491
주어진 sizes의 원소들을 오름차순으로 정렬한 후,
w와 h의 최대값을 구해 곱하면 된다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<vector<int>> sizes) {
int wMax = 0;
int hMax = 0;
for(int i = 0; i < sizes.size(); i++){
sort(sizes[i].begin(), sizes[i].end());
}
for(int i = 0; i < sizes.size(); i++){
wMax = wMax < sizes[i][0] ? sizes[i][0] : wMax;
hMax = hMax < sizes[i][1] ? sizes[i][1] : hMax;
}
return wMax * hMax;
}
728x90
반응형
'프로그래머스 알고리즘 > Weekly Challenge' 카테고리의 다른 글
(프로그래머스 c++)위클리 챌린지 7주차 입실 퇴실 (0) | 2021.10.07 |
---|---|
(프로그래머스 c++)위클리 챌린지 9주차 (0) | 2021.10.06 |
(프로그래머스 JS)위클리 챌린지 6주차 (0) | 2021.09.07 |
(프로그래머스 c++)위클리 챌린지 6주차 (0) | 2021.09.07 |
(프로그래머스 JS)위클리 챌린지 5주차 (0) | 2021.09.02 |