aboutsummaryrefslogtreecommitdiff
path: root/aoc2023/test/day22/day22_test.gleam
diff options
context:
space:
mode:
authorJ.J <thechairman@thechairman.info>2023-12-22 22:51:52 -0500
committerJ.J <thechairman@thechairman.info>2023-12-22 22:51:52 -0500
commit3c5144c6120e27c2013dc95ae8aeebd84103296e (patch)
tree719f4a646d94f32e3535d3a64161b909078b2e7d /aoc2023/test/day22/day22_test.gleam
parentd739c6223d29de72a2d1fab4ac9fb34603414f6b (diff)
downloadgleam_aoc-3c5144c6120e27c2013dc95ae8aeebd84103296e.tar.gz
gleam_aoc-3c5144c6120e27c2013dc95ae8aeebd84103296e.zip
day 22 gleam complete
Diffstat (limited to 'aoc2023/test/day22/day22_test.gleam')
-rw-r--r--aoc2023/test/day22/day22_test.gleam8
1 files changed, 4 insertions, 4 deletions
diff --git a/aoc2023/test/day22/day22_test.gleam b/aoc2023/test/day22/day22_test.gleam
index 1760ece..3f8c0ca 100644
--- a/aoc2023/test/day22/day22_test.gleam
+++ b/aoc2023/test/day22/day22_test.gleam
@@ -4,10 +4,10 @@ import adglent.{type Example, Example}
import day22/solve
type Problem1AnswerType =
- String
+ Int
type Problem2AnswerType =
- String
+ Int
/// Add examples for part 1 here:
/// ```gleam
@@ -22,7 +22,7 @@ const part1_examples: List(Example(Problem1AnswerType)) = [
2,0,5~2,2,5
0,1,6~2,1,6
1,1,8~1,1,9",
- "5",
+ 5,
),
]
@@ -39,7 +39,7 @@ const part2_examples: List(Example(Problem2AnswerType)) = [
2,0,5~2,2,5
0,1,6~2,1,6
1,1,8~1,1,9",
- "7",
+ 7,
),
]