diff options
author | J.J <thechairman@thechairman.info> | 2024-05-30 21:47:13 -0400 |
---|---|---|
committer | J.J <thechairman@thechairman.info> | 2024-05-30 21:47:13 -0400 |
commit | fe088aa5778dcdbaab4dd8d4a7395a91c444b45c (patch) | |
tree | f7cd8214ff7db84fce7101908bec2dd7d9ac4a9a /aoc2023/src/day21 | |
parent | 87e9ab25ff70e215b537939a4bc23ab101f41dbe (diff) | |
download | gleam_aoc-fe088aa5778dcdbaab4dd8d4a7395a91c444b45c.tar.gz gleam_aoc-fe088aa5778dcdbaab4dd8d4a7395a91c444b45c.zip |
gleam 2019
Diffstat (limited to 'aoc2023/src/day21')
-rw-r--r-- | aoc2023/src/day21/.gitignore | 1 | ||||
-rw-r--r-- | aoc2023/src/day21/solve.gleam | 25 |
2 files changed, 0 insertions, 26 deletions
diff --git a/aoc2023/src/day21/.gitignore b/aoc2023/src/day21/.gitignore deleted file mode 100644 index ae40cea..0000000 --- a/aoc2023/src/day21/.gitignore +++ /dev/null @@ -1 +0,0 @@ -input.txt
\ No newline at end of file diff --git a/aoc2023/src/day21/solve.gleam b/aoc2023/src/day21/solve.gleam deleted file mode 100644 index 4d5c246..0000000 --- a/aoc2023/src/day21/solve.gleam +++ /dev/null @@ -1,25 +0,0 @@ -import adglent.{First, Second} -import gleam/io - -pub fn part1(input: String) { - todo as "Implement solution to part 1" -} - -pub fn part2(input: String) { - todo as "Implement solution to part 2" -} - -pub fn main() { - let assert Ok(part) = adglent.get_part() - let assert Ok(input) = adglent.get_input("21") - case part { - First -> - part1(input) - |> adglent.inspect - |> io.println - Second -> - part2(input) - |> adglent.inspect - |> io.println - } -} |