From 4e774a156cd52a5bbc10f551e4fb6157bc63fec9 Mon Sep 17 00:00:00 2001 From: lee0802-120 Date: Mon, 20 Jul 2026 10:11:14 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EC=A4=80=EC=84=9D=20=EC=A0=9C?= =?UTF-8?q?=EC=B6=9C=ED=95=A9=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../solution.ts" | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git "a/level-00/0.4-\355\225\250\354\210\230-\352\270\260\353\263\270/solution.ts" "b/level-00/0.4-\355\225\250\354\210\230-\352\270\260\353\263\270/solution.ts" index e81f784..23b2cb1 100644 --- "a/level-00/0.4-\355\225\250\354\210\230-\352\270\260\353\263\270/solution.ts" +++ "b/level-00/0.4-\355\225\250\354\210\230-\352\270\260\353\263\270/solution.ts" @@ -13,6 +13,8 @@ export interface RectangleInfo { } export function solution(width: number, height: number): RectangleInfo { - // TODO: 구현하세요 - throw new Error("아직 구현되지 않았습니다"); + return { + area: width * height, + perimeter: 2 * (width + height) + } }