function solution(sizes) {
const width = [];
const height = [];
for(let i = 0; i < sizes.length; i++) {
const max = Math.max(sizes[i][0], sizes[i][1]);
const min = Math.min(sizes[i][0], sizes[i][1]);
width.push(max);
height.push(min);
}
return Math.max(...width) * Math.max(...height);
}
'JavaScript' 카테고리의 다른 글
[프로그래머스 Lv.1] 숫자 문자열과 영단어 (0) | 2024.11.04 |
---|---|
[프로그래머스 Lv.1] 시저 암호/두개 뽑아서 더하기 javascript (0) | 2024.11.01 |
[프로그래머스 Lv.1] 삼총사 (0) | 2024.10.29 |
[프로그래머스 Lv.1] 3진법 뒤집기 풀이 (0) | 2024.10.28 |
[프로그래머스 Lv.1] 예산 (0) | 2024.10.25 |