day four
This commit is contained in:
17
main.go
17
main.go
@@ -70,5 +70,20 @@ func main() {
|
||||
`)
|
||||
|
||||
fmt.Println(dayThreeResult)
|
||||
// printRunes()
|
||||
|
||||
|
||||
/** DAY FOUR */
|
||||
fmt.Println("\nDAY FOUR")
|
||||
|
||||
dayFourInput := [][2][2]int{
|
||||
{{2, 4}, {6, 8}},
|
||||
{{2, 3}, {4, 5}},
|
||||
{{5, 7}, {7, 9}},
|
||||
{{2, 8}, {3, 7}},
|
||||
{{6, 6}, {4, 6}},
|
||||
{{2, 6}, {4, 8}},
|
||||
}
|
||||
|
||||
var dayFourResult = dayFour(dayFourInput)
|
||||
fmt.Println(dayFourResult)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user