Day 17: Part 2

But Part 1 is gone now!

Signed-off-by: James Griffin <james@unsupervised.ca>
This commit is contained in:
2020-12-17 21:27:49 -04:00
parent 93103bd18a
commit ef2cc37206
3 changed files with 63 additions and 50 deletions

View File

@@ -22,14 +22,13 @@ func Test_dimension_simulate1(t *testing.T) {
t.Logf(err.Error())
t.FailNow()
}
p.print()
p = simulate(p, 1)
p.print()
active := p.active()
if active != 12 {
t.Logf("Expected 11 active after 1 rounds, found %d", active)
if active != 29 {
t.Logf("Expected 29 active after 1 rounds, found %d", active)
t.FailNow()
}
}
@@ -42,10 +41,10 @@ func Test_dimension_simulate(t *testing.T) {
}
p = simulate(p, 6)
p.print()
active := p.active()
if active != 112 {
t.Logf("Expected 112 active after 6 rounds, found %d", active)
if active != 848 {
t.Logf("Expected 848 active after 6 rounds, found %d", active)
t.FailNow()
}
}