링크 :
코딩테스트 연습 - 최소직사각형 | 프로그래머스 (programmers.co.kr)
function solution(sizes) {
//정렬
for(let i=0; i<sizes.length; i++){
let left = sizes[i][0];
let right = sizes[i][1];
if(left < right){
sizes[i][0] = right;
sizes[i][1] = left;
}
}
//크기계산
let maxRight = 0;
let maxLeft = 0;
for(let i=0; i<sizes.length; i++){
if(maxRight < sizes[i][0]) maxRight = sizes[i][0];
if(maxLeft < sizes[i][1]) maxLeft = sizes[i][1];
}
return maxRight*maxLeft;
}
'교육 > 코테' 카테고리의 다른 글
[프로그래머스]JS 부족한 금액 계산하기 (0) | 2022.05.24 |
---|---|
[프로그래머스]JS 나머지가 1이되는 수 찾기 (0) | 2022.05.24 |
[프로그래머스]JS 2016년 (0) | 2022.05.23 |
[프로그래머스]JS 두 개 뽑아서 더하기 (0) | 2022.05.23 |
[프로그래머스]JS 예산 (0) | 2022.05.23 |