This commit is contained in:
2023-07-16 11:44:52 -05:00
parent 1e0d6df700
commit 462d12f502
2 changed files with 74 additions and 0 deletions

16
main.go
View File

@@ -86,4 +86,20 @@ func main() {
var dayFourResult = dayFour(dayFourInput)
fmt.Println(dayFourResult)
/** DAY FIVE */
fmt.Println("\nDAY FIVE")
dayFiveInput := [4][3]int{
{1, 2, 1},
{3, 1, 3},
{2, 2, 1},
{1, 1, 2},
}
var dayFiveResult = dayFive(dayFiveInput)
for _, r := range dayFiveResult {
fmt.Printf("%c ", r)
}
}