Implement day 8 2024 in Terraform

This commit is contained in:
2025-01-29 00:43:14 +01:00
parent 6941f2b2d2
commit f9416db251
5 changed files with 176 additions and 0 deletions

View File

@@ -131,6 +131,29 @@ run "day5_1" {
}
}
run "day08" {
command = plan
module {
source = "./day08"
}
variables {
input = file("../tests/samples/08.txt")
}
assert {
condition = output.part1 == 14
error_message = "Part1 output is wrong"
}
assert {
condition = output.part2 == 34
error_message = "Part1 output is wrong"
}
}
run "day11" {
command = plan