Implement 2024 day 14 part 1 in Terraform

This commit is contained in:
2024-12-27 21:14:28 +01:00
parent d07bb9235b
commit 5c030d5272
3 changed files with 61 additions and 0 deletions

View File

@@ -165,6 +165,25 @@ run "day13" {
}
}
run "day14" {
command = plan
module {
source = "./day14"
}
variables {
input = file("../tests/samples/14.txt")
height = 7
width = 11
}
assert {
condition = output.part1 == 12
error_message = "Part1 output is wrong"
}
}
run "day19" {
command = plan