Days 7,8,9

This commit is contained in:
gareth
2023-12-09 21:38:21 +00:00
parent 7e3eae9e60
commit d730b7ff9d
14 changed files with 1586 additions and 119 deletions

View File

@@ -0,0 +1,18 @@
package day09
import (
"fmt"
"strings"
)
func Part1(input string) int {
lines := strings.Split(input, "\n")
for _, line := range lines {
fmt.Println(line)
}
return -1
}
func Part2(input string) int {
return -2
}