Compare commits

..

No commits in common. "492d2a602a971a1486846aa1a91cb266774ceaea" and "134cb7aad10a45f03807ae5a55c9f40caa71ac9e" have entirely different histories.

5 changed files with 2 additions and 4 deletions

View File

@ -14,8 +14,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

@ -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

@ -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()