run on input, not test input

This commit is contained in:
David 2020-12-22 17:10:46 -05:00
parent 44fb58ff14
commit f744ac6745

View File

@ -125,7 +125,7 @@ func partOne() {
}
func partTwo() {
f, _ := os.Open("testinput")
f, _ := os.Open("input")
reader := bufio.NewReader(f)
scanner := bufio.NewScanner(reader)