diff options
author | H.J <thechairman@thechairman.info> | 2024-06-17 15:39:21 -0400 |
---|---|---|
committer | H.J <thechairman@thechairman.info> | 2024-06-17 15:39:21 -0400 |
commit | 32bc75cae2a0fceafea5c48c550888bc1d7c6016 (patch) | |
tree | 8cefbff840d1ce58ffcdf1957e4b52f7f77cc162 /aoc2017-gleam/src/aoc_2017/day_15.gleam | |
parent | 413891726756aed407a2cfbceb4cf0e14bbcc982 (diff) | |
download | gleam_aoc-32bc75cae2a0fceafea5c48c550888bc1d7c6016.tar.gz gleam_aoc-32bc75cae2a0fceafea5c48c550888bc1d7c6016.zip |
gleam 2017 day 14
Diffstat (limited to 'aoc2017-gleam/src/aoc_2017/day_15.gleam')
-rw-r--r-- | aoc2017-gleam/src/aoc_2017/day_15.gleam | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/aoc2017-gleam/src/aoc_2017/day_15.gleam b/aoc2017-gleam/src/aoc_2017/day_15.gleam new file mode 100644 index 0000000..a0a1145 --- /dev/null +++ b/aoc2017-gleam/src/aoc_2017/day_15.gleam @@ -0,0 +1,7 @@ +pub fn pt_1(input: String) { + todo as "part 1 not implemented" +} + +pub fn pt_2(input: String) { + todo as "part 2 not implemented" +} |