adventofcode/2018/day09-1.go

14 lines
178 B
Go
Raw Normal View History

2018-12-12 00:11:45 +00:00
package main
import (
"fmt"
"internal/day09"
)
func main() {
numPlayers, finNum := day09.ParseInput()
_, score := day09.PlayGame(numPlayers, finNum)
fmt.Println(score)
}