Skip to content

Commit 5e9b51c

Browse files
committed
Rearranged utils and pulled the Grid into a util
1 parent dc9c79a commit 5e9b51c

File tree

20 files changed

+114
-18
lines changed

20 files changed

+114
-18
lines changed

day-0/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"strings"
99

10-
file "github.com/shaunburdick/advent-of-code-2024/lib"
10+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
1111
)
1212

1313
var input string

day-0/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
file "github.com/shaunburdick/advent-of-code-2024/lib"
6+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
77
)
88

99
type TestDeclaration struct {

day-1/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"strings"
1010

11-
file "github.com/shaunburdick/advent-of-code-2024/lib"
11+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
1212
)
1313

1414
var input string

day-1/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
file "github.com/shaunburdick/advent-of-code-2024/lib"
6+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
77
)
88

99
type TestDeclaration struct {

day-2/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"strings"
99

10-
file "github.com/shaunburdick/advent-of-code-2024/lib"
10+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
1111
)
1212

1313
var input string

day-2/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
file "github.com/shaunburdick/advent-of-code-2024/lib"
6+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
77
)
88

99
type TestDeclaration struct {

day-3/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"strings"
1010

11-
file "github.com/shaunburdick/advent-of-code-2024/lib"
11+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
1212
)
1313

1414
var input string

day-3/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
file "github.com/shaunburdick/advent-of-code-2024/lib"
6+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
77
)
88

99
type TestDeclaration struct {

day-4/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"log"
88
"strings"
99

10-
file "github.com/shaunburdick/advent-of-code-2024/lib"
10+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
1111
)
1212

1313
var input string

day-4/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
file "github.com/shaunburdick/advent-of-code-2024/lib"
7+
file "github.com/shaunburdick/advent-of-code-2024/lib/file"
88
)
99

1010
type TestDeclaration struct {

0 commit comments

Comments
 (0)