function solution(sizes) {
let answer = 0;
let width = [];
let height = [];
sizes.forEach((size) => {
if(size[0] > size[1]){
width.push(size[0]);
height.push(size[1]);
}else{
width.push(size[1]);
height.push(size[0]);
}
});
answer = Math.max(...width) * Math.max(...height);
return answer;
}
forEach
안에서 if문이 아닌 Math.max
와 Math.min
을 사용할 수 있다.
그런데 그냥 저게 더 빠를 것 같아서...