Day 9.2 solution.

This commit is contained in:
Anna Rose 2018-12-11 19:11:56 -05:00
parent 5c52fbdc16
commit 06a0886b67
No known key found for this signature in database
GPG Key ID: 8D9ACA841015C59A

13
2018/day09-2.go Normal file
View 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)
}