aboutsummaryrefslogtreecommitdiff
path: root/aoc2023/test/day22/day22_test.gleam
diff options
context:
space:
mode:
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,
),
]