Skip to content

Commit 35a447c

Browse files
committed
Change path
1 parent 30065c4 commit 35a447c

File tree

36 files changed

+40
-40
lines changed

36 files changed

+40
-40
lines changed

leetcode/0098.Validate-Binary-Search-Tree/98. Validate Binary Search Tree.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package leetcode
22

3-
import "math"
4-
53
import (
6-
"github.com/halfrost/LeetCode-Go/structures"
4+
"math"
5+
6+
"github.com/halfrost/leetcode-go/structures"
77
)
88

99
// TreeNode define

leetcode/0098.Validate-Binary-Search-Tree/98. Validate Binary Search Tree_test.go

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

7-
"github.com/halfrost/LeetCode-Go/structures"
7+
"github.com/halfrost/leetcode-go/structures"
88
)
99

1010
type question98 struct {

leetcode/0099.Recover-Binary-Search-Tree/99. Recover Binary Search Tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package leetcode
22

33
import (
4-
"github.com/halfrost/LeetCode-Go/structures"
4+
"github.com/halfrost/leetcode-go/structures"
55
)
66

77
// TreeNode define

leetcode/0099.Recover-Binary-Search-Tree/99. Recover Binary Search Tree_test.go

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

7-
"github.com/halfrost/LeetCode-Go/structures"
7+
"github.com/halfrost/leetcode-go/structures"
88
)
99

1010
type question99 struct {

leetcode/0100.Same-Tree/100. Same Tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package leetcode
22

33
import (
4-
"github.com/halfrost/LeetCode-Go/structures"
4+
"github.com/halfrost/leetcode-go/structures"
55
)
66

77
// TreeNode define

leetcode/0100.Same-Tree/100. Same Tree_test.go

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

7-
"github.com/halfrost/LeetCode-Go/structures"
7+
"github.com/halfrost/leetcode-go/structures"
88
)
99

1010
type question100 struct {

leetcode/0101.Symmetric-Tree/101. Symmetric Tree.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package leetcode
22

33
import (
4-
"github.com/halfrost/LeetCode-Go/structures"
4+
"github.com/halfrost/leetcode-go/structures"
55
)
66

77
// TreeNode define

leetcode/0101.Symmetric-Tree/101. Symmetric Tree_test.go

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

7-
"github.com/halfrost/LeetCode-Go/structures"
7+
"github.com/halfrost/leetcode-go/structures"
88
)
99

1010
type question101 struct {

leetcode/0102.Binary-Tree-Level-Order-Traversal/102. Binary Tree Level Order Traversal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package leetcode
22

33
import (
4-
"github.com/halfrost/LeetCode-Go/structures"
4+
"github.com/halfrost/leetcode-go/structures"
55
)
66

77
// TreeNode define

leetcode/0102.Binary-Tree-Level-Order-Traversal/102. Binary Tree Level Order Traversal_test.go

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

7-
"github.com/halfrost/LeetCode-Go/structures"
7+
"github.com/halfrost/leetcode-go/structures"
88
)
99

1010
type question102 struct {

0 commit comments

Comments
 (0)