[프로그래머스] 최소직사각형 Javascript

Derhon·2023년 1월 16일
0

문제풀이

목록 보기
7/13
post-thumbnail

최소직사각형

나의 답

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.maxMath.min을 사용할 수 있다.
그런데 그냥 저게 더 빠를 것 같아서...

profile
🧑‍🚀 이사했어요 ⮕ https://99uulog.tistory.com/

0개의 댓글