Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions week1/day6/day6.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ type Direction int

const (
Up Direction = iota
Down Direction = iota
Left Direction = iota
Right Direction = iota
Invalid Direction = iota
Down
Left
Right
Invalid
)

func parseInput() []string {
Expand Down