Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Move = map[Direction]Point{ Right: {1, 0}, Left: {-1, 0}, Up: {0, -1}, Down: {0, 1}, }
View Source
var MoveString = map[Point]string{
{1, 0}: "R",
{-1, 0}: "L",
{0, -1}: "U",
{0, 1}: "D",
}
Functions ¶
This section is empty.
Types ¶
type Exercise ¶
type Exercise struct {
common.BaseExercise
}
Exercise for Advent of Code 2023 day 18.
type Lagoon ¶
func (*Lagoon) DebugPrint ¶
func (lg *Lagoon) DebugPrint()
Click to show internal directories.
Click to hide internal directories.