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 {

leetcode/0103.Binary-Tree-Zigzag-Level-Order-Traversal/103. Binary Tree Zigzag 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/0103.Binary-Tree-Zigzag-Level-Order-Traversal/103. Binary Tree Zigzag 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 question103 struct {

leetcode/0104.Maximum-Depth-of-Binary-Tree/104. Maximum Depth of Binary 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/0104.Maximum-Depth-of-Binary-Tree/104. Maximum Depth of Binary 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 question104 struct {

leetcode/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/105. Construct Binary Tree from Preorder and Inorder 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/0105.Construct-Binary-Tree-from-Preorder-and-Inorder-Traversal/105. Construct Binary Tree from Preorder and Inorder 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 question105 struct {

leetcode/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/106. Construct Binary Tree from Inorder and Postorder 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/0106.Construct-Binary-Tree-from-Inorder-and-Postorder-Traversal/106. Construct Binary Tree from Inorder and Postorder 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 question106 struct {

leetcode/0107.Binary-Tree-Level-Order-Traversal-II/107. Binary Tree Level Order Traversal II.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/0107.Binary-Tree-Level-Order-Traversal-II/107. Binary Tree Level Order Traversal II_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 question107 struct {

leetcode/0108.Convert-Sorted-Array-to-Binary-Search-Tree/108. Convert Sorted Array to 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/0108.Convert-Sorted-Array-to-Binary-Search-Tree/108. Convert Sorted Array to 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 question108 struct {

leetcode/0109.Convert-Sorted-List-to-Binary-Search-Tree/109. Convert Sorted List to 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
// ListNode define

leetcode/0109.Convert-Sorted-List-to-Binary-Search-Tree/109. Convert Sorted List to 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 question109 struct {

leetcode/0110.Balanced-Binary-Tree/110. Balanced Binary 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/0110.Balanced-Binary-Tree/110. Balanced Binary 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 question110 struct {

leetcode/0111.Minimum-Depth-of-Binary-Tree/111. Minimum Depth of Binary 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/0111.Minimum-Depth-of-Binary-Tree/111. Minimum Depth of Binary 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 question111 struct {

leetcode/0112.Path-Sum/112. Path Sum.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/0112.Path-Sum/112. Path Sum_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 question112 struct {

leetcode/0113.Path-Sum-II/113. Path Sum II.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/0113.Path-Sum-II/113. Path Sum II_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 question113 struct {

leetcode/0114.Flatten-Binary-Tree-to-Linked-List/114. Flatten Binary Tree to Linked List.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/0114.Flatten-Binary-Tree-to-Linked-List/114. Flatten Binary Tree to Linked List_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 question114 struct {

leetcode/0124.Binary-Tree-Maximum-Path-Sum/124. Binary Tree Maximum Path Sum.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/0124.Binary-Tree-Maximum-Path-Sum/124. Binary Tree Maximum Path Sum_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 question124 struct {

0 commit comments

Comments
 (0)