mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-27 05:40:32 +01:00
Implement 2024 day 14 part 1 in Terraform
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user