diff options
author | HJ <thechairman@thechairman.info> | 2023-12-08 07:33:41 -0500 |
---|---|---|
committer | HJ <thechairman@thechairman.info> | 2023-12-08 07:33:41 -0500 |
commit | 583e26e8308753d929c113125b5ef43fd183461b (patch) | |
tree | 24511e06962dba6e76a70b67af493264c794334f /aoc2023/test/day8 | |
parent | b9c4b4dfadd305c55fb09d421252780cb254f89b (diff) | |
download | gleam_aoc-583e26e8308753d929c113125b5ef43fd183461b.tar.gz gleam_aoc-583e26e8308753d929c113125b5ef43fd183461b.zip |
day 8 complete
Diffstat (limited to 'aoc2023/test/day8')
-rw-r--r-- | aoc2023/test/day8/day8_test.gleam | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/aoc2023/test/day8/day8_test.gleam b/aoc2023/test/day8/day8_test.gleam index e54d887..2cd499a 100644 --- a/aoc2023/test/day8/day8_test.gleam +++ b/aoc2023/test/day8/day8_test.gleam @@ -4,10 +4,10 @@ import adglent.{type Example, Example} import day8/solve type Problem1AnswerType = - String + Int type Problem2AnswerType = - String + Int /// Add examples for part 1 here: /// ```gleam @@ -20,7 +20,7 @@ const part1_examples: List(Example(Problem1AnswerType)) = [ AAA = (BBB, BBB) BBB = (AAA, ZZZ) ZZZ = (ZZZ, ZZZ)", - "6", + 6, ), ] @@ -40,7 +40,7 @@ const part2_examples: List(Example(Problem2AnswerType)) = [ 22C = (22Z, 22Z) 22Z = (22B, 22B) XXX = (XXX, XXX)", - "6", + 6, ), ] |