[프로그래머스] 직사각형 넓이 구하기

0
post-thumbnail
post-custom-banner

❔ [문제]

2차원 좌표 평면에 변이 축과 평행한 직사각형이 있습니다. 직사각형 네 꼭짓점의 좌표 [[x1, y1], [x2, y2], [x3, y3], [x4, y4]]가 담겨있는 배열 dots가 매개변수로 주어질 때, 직사각형의 넓이를 return 하도록 solution 함수를 완성해보세요.

  • 제한사항
    • dots의 길이 = 4
    • dots의 원소의 길이 = 2
    • 256 < dots[i]의 원소 < 256
    • 잘못된 입력은 주어지지 않습니다.


❕ [내 풀이]

function solution(dots) {
    var answer = '';
    const width = dots.map(v => v[0]);
    const height = dots.map(v => v[1]);

   answer = Math.abs(Math.max(...width) - Math.min(...width)) * Math.abs(Math.max(...height) - Math.min(...height));

    return answer;
}

❕❕❕ [깔끔하다고 생각된 풀이]

function solution(dots) {
    let x = [],
        y = [];

    for (let pos of dots) {
        x.push(pos[0]);
        y.push(pos[1]);
    }

    return (Math.max(...x) - Math.min(...x)) * (Math.max(...y) - Math.min(...y))
}
post-custom-banner

0개의 댓글