aboutsummaryrefslogtreecommitdiff
path: root/aoc2023-gleam/src/day21
diff options
context:
space:
mode:
authorH.J <thechairman@thechairman.info>2024-10-09 11:36:55 -0400
committerH.J <thechairman@thechairman.info>2024-10-09 11:36:55 -0400
commit8777ff071f7bb37631baa7b6717ad29961e50911 (patch)
tree6d59c4ed58e454b960339c3d1151f0a879e8d7cb /aoc2023-gleam/src/day21
parent6156a9ef7be4012063a042aafb4e9b0d7eadde8e (diff)
downloadgleam_aoc-8777ff071f7bb37631baa7b6717ad29961e50911.tar.gz
gleam_aoc-8777ff071f7bb37631baa7b6717ad29961e50911.zip
sorting by language
Diffstat (limited to 'aoc2023-gleam/src/day21')
-rw-r--r--aoc2023-gleam/src/day21/.gitignore1
-rw-r--r--aoc2023-gleam/src/day21/solve.gleam25
2 files changed, 0 insertions, 26 deletions
diff --git a/aoc2023-gleam/src/day21/.gitignore b/aoc2023-gleam/src/day21/.gitignore
deleted file mode 100644
index ae40cea..0000000
--- a/aoc2023-gleam/src/day21/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-input.txt \ No newline at end of file
diff --git a/aoc2023-gleam/src/day21/solve.gleam b/aoc2023-gleam/src/day21/solve.gleam
deleted file mode 100644
index 4d5c246..0000000
--- a/aoc2023-gleam/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
- }
-}