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]; }