Lv.2 ์นดํŽซ

ujinujinยท2022๋…„ 2์›” 12์ผ
0

๐Ÿค–๋ฌธ์ œ

๐Ÿ‘๐Ÿป 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) ์ž„์„ ์ด์šฉํ•ด์„œ ํ’€์—ˆ๋‹ค

profile
๋ฐฑ์ˆ˜์™€ ์ทจ์ค€์ƒ ๊ทธ ์‚ฌ์ด ์–ด๋””

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด