This commit is contained in:
2025-12-04 11:52:35 +00:00
parent 90083f28e5
commit 9c2e2c68dd
10 changed files with 560 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ package grid2d
import (
"strings"
"adventofcode2024/utils"
"adventofcode2025/utils"
)
type Grid[T any] struct {

View File

@@ -3,9 +3,9 @@ package inputs
import (
"strings"
"adventofcode2024/utils"
"adventofcode2024/utils/grid2d"
sparsegrid "adventofcode2024/utils/sparseGrid"
"adventofcode2025/utils"
"adventofcode2025/utils/grid2d"
sparsegrid "adventofcode2025/utils/sparseGrid"
)
func ToInts(input string, sep string) []int {

View File

@@ -4,7 +4,7 @@ import (
"fmt"
"strings"
"adventofcode2024/utils"
"adventofcode2025/utils"
)
type SparseGrid[T comparable] struct {