diff options
Diffstat (limited to 'aoc2023/test/day20/day20_test.gleam')
-rw-r--r-- | aoc2023/test/day20/day20_test.gleam | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aoc2023/test/day20/day20_test.gleam b/aoc2023/test/day20/day20_test.gleam index 2cbf670..92e8afb 100644 --- a/aoc2023/test/day20/day20_test.gleam +++ b/aoc2023/test/day20/day20_test.gleam @@ -19,8 +19,7 @@ const part1_examples: List(Example(Problem1AnswerType)) = [ %a -> b %b -> c %c -> inv -&inv -> a -", +&inv -> a", "32000000", ), Example( @@ -28,7 +27,8 @@ const part1_examples: List(Example(Problem1AnswerType)) = [ %a -> inv, con &inv -> b %b -> con -&con -> output", +&con -> output +output -> ", "11687500", ), ] |