diff options
author | HJ <thechairman@thechairman.info> | 2023-12-20 23:51:50 -0500 |
---|---|---|
committer | HJ <thechairman@thechairman.info> | 2023-12-20 23:51:50 -0500 |
commit | ec2d8c531d142f36fe4e55aaf91828a18cb2f173 (patch) | |
tree | 428f0310ffba81e2552b245fafb218dc8d0d0ae9 /aoc2023/test/day20/day20_test.gleam | |
parent | 45b77b3ade64f36724fc9b8df929007aa7f46ed0 (diff) | |
download | gleam_aoc-ec2d8c531d142f36fe4e55aaf91828a18cb2f173.tar.gz gleam_aoc-ec2d8c531d142f36fe4e55aaf91828a18cb2f173.zip |
day 20 gleam in progress
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", ), ] |