diff options
author | J.J <thechairman@thechairman.info> | 2024-05-30 21:47:13 -0400 |
---|---|---|
committer | J.J <thechairman@thechairman.info> | 2024-05-30 21:47:13 -0400 |
commit | fe088aa5778dcdbaab4dd8d4a7395a91c444b45c (patch) | |
tree | f7cd8214ff7db84fce7101908bec2dd7d9ac4a9a /aoc2023/test/day20/day20_test.gleam | |
parent | 87e9ab25ff70e215b537939a4bc23ab101f41dbe (diff) | |
download | gleam_aoc-fe088aa5778dcdbaab4dd8d4a7395a91c444b45c.tar.gz gleam_aoc-fe088aa5778dcdbaab4dd8d4a7395a91c444b45c.zip |
gleam 2019
Diffstat (limited to 'aoc2023/test/day20/day20_test.gleam')
-rw-r--r-- | aoc2023/test/day20/day20_test.gleam | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/aoc2023/test/day20/day20_test.gleam b/aoc2023/test/day20/day20_test.gleam index 92e8afb..9b79b05 100644 --- a/aoc2023/test/day20/day20_test.gleam +++ b/aoc2023/test/day20/day20_test.gleam @@ -33,12 +33,12 @@ output -> ", ), ] +// const part2_examples: List(Example(Problem2AnswerType)) = [] + /// Add examples for part 2 here: /// ```gleam ///const part2_examples: List(Example(Problem2AnswerType)) = [Example("some input", "")] /// ``` -const part2_examples: List(Example(Problem2AnswerType)) = [] - pub fn part1_test() { part1_examples |> should.not_equal([]) @@ -46,11 +46,10 @@ pub fn part1_test() { solve.part1(example.input) |> should.equal(example.answer) } - -pub fn part2_test() { - part2_examples - |> should.not_equal([]) - use example <- list.map(part2_examples) - solve.part2(example.input) - |> should.equal(example.answer) -} +// pub fn part2_test() { +// part2_examples +// |> should.not_equal([]) +// use example <- list.map(part2_examples) +// solve.part2(example.input) +// |> should.equal(example.answer) +// } |