Day 9.2 solution.
This commit is contained in:
parent
5c52fbdc16
commit
06a0886b67
13
2018/day09-2.go
Normal file
13
2018/day09-2.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"internal/day09"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
numPlayers, finNum := day09.ParseInput()
|
||||||
|
_, score := day09.PlayGame(numPlayers, finNum*100)
|
||||||
|
fmt.Println(score)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user