반응형
https://programmers.co.kr/learn/courses/30/lessons/86491
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int solution(vector<vector<int>> sizes) {
int answer = 0;
int w=0;
int h=0;
for(vector<int> temp : sizes){
int a;
int b;
if (temp[0] > temp[1]){
a = temp[0];
b = temp[1];
}
else {
b = temp[0];
a = temp[1];
}
if(w < a){
w = a;
}
if(h < b){
h = b;
}
}
answer = w*h;
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 부족한 금액 계산하기 (0) | 2022.03.16 |
---|---|
[프로그래머스][C++] 나머지가 1이 되는 수 찾기 (0) | 2022.03.16 |
[프로그래머스][C] 2016년 (0) | 2022.03.16 |
[프로그래머스][C++] 두 개 뽑아서 더하기 (0) | 2022.03.16 |
[프로그래머스][C++] 예산 (0) | 2022.03.16 |