Day 9.1 solution.

This commit is contained in:
Anna Rose Wiggins 2018-12-11 19:11:45 -05:00
parent 414202f524
commit 5c52fbdc16
No known key found for this signature in database
GPG key ID: 8D9ACA841015C59A
4 changed files with 132 additions and 0 deletions

13
2018/day09-1.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)
fmt.Println(score)
}