๐๐ป 2022๋ 2์ 12์ผ
<script>
function solution(brown, yellow) {
let total = brown + yellow;
for (let i=3; i<parseInt(total/2); i++) {
if (total % i === 0) {
let height = i;
let width = (total / i);
if ((width-2) * (height-2) === yellow) return [width, height];
}
}
}
</script>
๋ ธ๋์ ๋ฉด์ = (์นดํซ ๊ฐ๋ก๊ธธ์ด - 2) * (์นดํซ ์ธ๋ก๊ธธ์ด - 2) ์์ ์ด์ฉํด์ ํ์๋ค