Compare commits

..

No commits in common. "858c57647f24ce45e368054bed05532f30a6f75f" and "e4f381df4b0d8a32662de635987fdec3f9facb64" have entirely different histories.

7 changed files with 2 additions and 6 deletions

View File

@ -17,8 +17,6 @@ jobs:
run: go build -v ./day01/*.go
- name: Build day two
run: go build -v ./day02/*.go
- name: Run day one
run: go run -v ./day01/*.go
- name: Display Go version
run: go version
- name: List files in the repository

View File

@ -1 +0,0 @@
../inputs

View File

@ -109,7 +109,7 @@ func CombineIndexes(s string) int {
}
func main() {
file, err := os.Open("./inputs/day01_input")
file, err := os.Open("input")
check(err)
defer file.Close()

View File

@ -1 +0,0 @@
../inputs

View File

@ -140,7 +140,7 @@ func PrintAndWait[T any](x T) {
}
func main() {
file, err := os.Open("./inputs/day02_input")
file, err := os.Open("input")
check(err)
defer file.Close()