Skip to content

Commit 30065c4

Browse files
committed
Change path
1 parent b94bef3 commit 30065c4

26 files changed

+26
-26
lines changed

leetcode/0019.Remove-Nth-Node-From-End-of-List/19. Remove Nth Node From End of 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
// ListNode define

leetcode/0019.Remove-Nth-Node-From-End-of-List/19. Remove Nth Node From End of 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 question19 struct {

leetcode/0021.Merge-Two-Sorted-Lists/21. Merge Two Sorted Lists.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/0021.Merge-Two-Sorted-Lists/21. Merge Two Sorted Lists_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 question21 struct {

leetcode/0023.Merge-k-Sorted-Lists/23. Merge k Sorted Lists.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/0023.Merge-k-Sorted-Lists/23. Merge k Sorted Lists_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 question23 struct {

leetcode/0024.Swap-Nodes-in-Pairs/24. Swap Nodes in Pairs.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/0024.Swap-Nodes-in-Pairs/24. Swap Nodes in Pairs_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 question24 struct {

leetcode/0025.Reverse-Nodes-in-k-Group/25. Reverse Nodes in k Group.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/0025.Reverse-Nodes-in-k-Group/25. Reverse Nodes in k Group_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 question25 struct {

leetcode/0056.Merge-Intervals/56. Merge Intervals.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
// Interval define

leetcode/0057.Insert-Interval/57. Insert Interval.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
// Interval define

leetcode/0061.Rotate-List/61. Rotate 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
// ListNode define

leetcode/0061.Rotate-List/61. Rotate 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 question61 struct {

leetcode/0082.Remove-Duplicates-from-Sorted-List-II/82. Remove Duplicates from Sorted List 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
// ListNode define

leetcode/0082.Remove-Duplicates-from-Sorted-List-II/82. Remove Duplicates from Sorted List 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 question82 struct {

leetcode/0083.Remove-Duplicates-from-Sorted-List/83. Remove Duplicates from Sorted 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
// ListNode define

leetcode/0083.Remove-Duplicates-from-Sorted-List/83. Remove Duplicates from Sorted 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 question83 struct {

leetcode/0086.Partition-List/86. Partition 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
// ListNode define

leetcode/0086.Partition-List/86. Partition 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 question86 struct {

leetcode/0092.Reverse-Linked-List-II/92. Reverse Linked List 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
// ListNode define

leetcode/0092.Reverse-Linked-List-II/92. Reverse Linked List 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 question92 struct {

leetcode/0094.Binary-Tree-Inorder-Traversal/94. Binary Tree 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/0094.Binary-Tree-Inorder-Traversal/94. Binary Tree 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 question94 struct {

leetcode/0095.Unique-Binary-Search-Trees-II/95. Unique Binary Search Trees 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/0095.Unique-Binary-Search-Trees-II/95. Unique Binary Search Trees 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 question95 struct {

0 commit comments

Comments
 (0)