2020 Day 17 Complete

This commit is contained in:
2020-12-17 09:17:22 -06:00
parent 6c0a8593c9
commit 4ca404b3c6
6 changed files with 252 additions and 4 deletions

View File

@@ -72,5 +72,5 @@ func (c *Coordinate3d) GetDownCoord() *Coordinate3d {
}
}
func (c Coordinate3d) String() string {
return fmt.Sprintf("[%d, %d, %d]", c.X, c.Y, c.Z)
return fmt.Sprintf("[X:%d, Y:%d, Z:%d]", c.X, c.Y, c.Z)
}