fix the two actual bugs

This commit is contained in:
2026-09-06 22:16:30 -04:00
parent 0513d2fcc9
commit 2b57998de6
4 changed files with 19 additions and 15 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import (
)
func main() {
f := "names.txt"
f := "input.txt"
if len(os.Args) > 1 {
f = os.Args[1]
}
@@ -19,5 +19,5 @@ func main() {
return
}
s := string(b)
microgopt.Run(strings.Split(s, "\n"))
microgopt.Run(strings.Split(s, "\n"), 10000)
}