2 Commits

Author SHA1 Message Date
df779eb510 Fixed a small oversight in folder structure
All checks were successful
Build / gobuild (push) Successful in 1m27s
2023-12-02 16:59:44 +00:00
79f63b0bf0 Truying to do something really silly with symlinks
Some checks failed
Build / gobuild (push) Failing after 1m22s
2023-12-02 16:56:35 +00:00
4 changed files with 4 additions and 2 deletions

1
day01/inputs Symbolic link
View File

@@ -0,0 +1 @@
../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("./inputs/day01_input")
check(err)
defer file.Close()

1
day02/inputs Symbolic link
View File

@@ -0,0 +1 @@
../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("./inputs/day02_input")
check(err)
defer file.Close()