Implement 2024 day 13 in terraform

This commit is contained in:
2024-12-27 20:45:17 +01:00
parent b23676bf04
commit d07bb9235b
4 changed files with 112 additions and 0 deletions

View File

@@ -148,6 +148,23 @@ run "day11" {
}
}
run "day13" {
command = plan
module {
source = "./day13"
}
variables {
input = file("../tests/samples/13.txt")
}
assert {
condition = output.part1 == 480
error_message = "Part1 output is wrong"
}
}
run "day19" {
command = plan