23 lines
286 B
Go
23 lines
286 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
h "git.bullercodeworks.com/brian/adventofcode/helpers"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
inp := h.StdinToStringSlice()
|
||
|
part1(inp)
|
||
|
fmt.Println()
|
||
|
part2(inp)
|
||
|
}
|
||
|
|
||
|
func part1(inp []string) {
|
||
|
fmt.Println("# Part 1")
|
||
|
}
|
||
|
|
||
|
func part2(inp []string) {
|
||
|
fmt.Println("# Part 2")
|
||
|
}
|