diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2020-12-01 13:23:11 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2020-12-01 13:23:11 +0200 |
| commit | d6d74339f0b2385b3b63432a13be1d5241725226 (patch) | |
| tree | edc4528cea5e720c87d81cd6e2fce2083efc50c9 /day1 | |
| parent | a42645944b9ccedc21dd90205fa98e4446745b0a (diff) | |
Improve structure
Diffstat (limited to 'day1')
| -rw-r--r-- | day1/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/day1/index.ts b/day1/index.ts index 638acb9..2e202ad 100644 --- a/day1/index.ts +++ b/day1/index.ts @@ -1,7 +1,7 @@ import { ExerciseModuleFunc } from "../types"; const day1: ExerciseModuleFunc = (input: string) => { - console.log(input); + return input; } export default day1; |
