Days 7,8,9
This commit is contained in:
18
2023/gareth/template/day09.go
Normal file
18
2023/gareth/template/day09.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user