ppotatoG


Back to all posts

최소직사각형

Written by ppotatoG & Posted on June 13th, 2022

최소직사각형

제출한 답

arr로 들어오는 값들을 sort로 정렬

각 0번째, 1번째 값 중 가장 큰 값을 Math.max로 찾아 두 값을 곱해줌

const solution = (arr) => {
arr.map((val) => val.sort((a, b) => a - b));
return Math.max.apply(
Math, arr.map((val) => val[0])
)
* Math.max.apply(
Math, arr.map((val) => val[1])
);
}

Posted on June 13th, 2022