From c327a4d3db3866e4a511b8270a4b17022d4f7364 Mon Sep 17 00:00:00 2001 From: lee0802-120 Date: Mon, 20 Jul 2026 10:09:48 +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" | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git "a/level-00/0.3-\353\263\200\354\210\230-\354\212\244\354\231\221/solution.ts" "b/level-00/0.3-\353\263\200\354\210\230-\354\212\244\354\231\221/solution.ts" index c9eb307..1aaeb03 100644 --- "a/level-00/0.3-\353\263\200\354\210\230-\354\212\244\354\231\221/solution.ts" +++ "b/level-00/0.3-\353\263\200\354\210\230-\354\212\244\354\231\221/solution.ts" @@ -7,6 +7,5 @@ * solution(1, 2) // => [2, 1] */ export function solution(a: T, b: T): [T, T] { - // TODO: 구현하세요 - throw new Error("아직 구현되지 않았습니다"); + return [b, a]; }