Day 18 & Day 20 done

This commit is contained in:
2020-11-03 15:09:13 -06:00
parent 4f1712ceb0
commit d4a45d2b67
12 changed files with 447 additions and 479 deletions

10
2019/day20/portal.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import h "git.bullercodeworks.com/brian/adventofcode/helpers"
type Portal struct {
Label string
From h.Coordinate3d
To h.Coordinate3d
Outer bool
}