14 lines
178 B
Go
14 lines
178 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"internal/day09"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
numPlayers, finNum := day09.ParseInput()
|
||
|
_, score := day09.PlayGame(numPlayers, finNum)
|
||
|
fmt.Println(score)
|
||
|
}
|