Skip to content

Commit 9437625

Browse files
committed
Add go module in root directory
1 parent e2a72e6 commit 9437625

File tree

270 files changed

+317
-269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+317
-269
lines changed

go.mod

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,18 @@ module github.com/halfrost/LeetCode-Go
33
go 1.19
44

55
require (
6-
github.com/BurntSushi/toml v1.2.0 // indirect
6+
github.com/BurntSushi/toml v1.2.0
7+
github.com/halfrost/LeetCode-Go/structures v0.0.0-20220910233101-aa0e2c897b18
8+
github.com/halfrost/LeetCode-Go/template v0.0.0-20220910233504-e2a72e6212ce
9+
github.com/mozillazg/request v0.8.0
10+
github.com/spf13/cobra v1.5.0
11+
)
12+
13+
require (
14+
github.com/bitly/go-simplejson v0.5.0 // indirect
15+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
716
github.com/inconshreveable/mousetrap v1.0.0 // indirect
8-
github.com/spf13/cobra v1.5.0 // indirect
17+
github.com/kr/pretty v0.3.0 // indirect
918
github.com/spf13/pflag v1.0.5 // indirect
19+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
1020
)

go.sum

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,40 @@
11
github.com/BurntSushi/toml v1.2.0 h1:Rt8g24XnyGTyglgET/PRUNlrUeu9F5L+7FilkXfZgs0=
22
github.com/BurntSushi/toml v1.2.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
3+
github.com/bitly/go-simplejson v0.5.0 h1:6IH+V8/tVMab511d5bn4M7EwGXZf9Hj6i2xSwkNEM+Y=
4+
github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA=
5+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 h1:DDGfHa7BWjL4YnC6+E63dPcxHo2sUxDIu8g3QgEJdRY=
6+
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4=
37
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
8+
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
9+
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
10+
github.com/halfrost/LeetCode-Go/structures v0.0.0-20220910233101-aa0e2c897b18 h1:0GpuK4ECz6Q5AznkgjU2ZhxfqXyU5lt7wmzm7R0GyuA=
11+
github.com/halfrost/LeetCode-Go/structures v0.0.0-20220910233101-aa0e2c897b18/go.mod h1:PiB3scEe5vQhgf3BFfrj/wwApeH+2yyPRF3Jqpq+7AY=
12+
github.com/halfrost/LeetCode-Go/template v0.0.0-20220910233504-e2a72e6212ce h1:JQkZW/93bYrrUhM2xh4qLSZAXfw3DXQ15bfXis5TGpI=
13+
github.com/halfrost/LeetCode-Go/template v0.0.0-20220910233504-e2a72e6212ce/go.mod h1:Jiujq5ltPAr2X9Aw8KYqm8nzL02b73UtrVhryu383ag=
414
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
515
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
16+
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
17+
github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
18+
github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
19+
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
20+
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
21+
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
22+
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
23+
github.com/mozillazg/request v0.8.0 h1:TbXeQUdBWr1J1df5Z+lQczDFzX9JD71kTCl7Zu/9rNM=
24+
github.com/mozillazg/request v0.8.0/go.mod h1:weoQ/mVFNbWgRBtivCGF1tUT9lwneFesues+CleXMWc=
25+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
26+
github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k=
27+
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
628
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
729
github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU=
830
github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM=
931
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
1032
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
33+
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
34+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 h1:D0B/7al0LLrVC8aWF4+oxpv/m8bc7ViFfVS8/gXGdqI=
35+
golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
1136
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
37+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
38+
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
1239
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
40+
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

leetcode/0002.Add-Two-Numbers/2. Add Two Numbers.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/0002.Add-Two-Numbers/2. Add Two Numbers_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 question2 struct {

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 {

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

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

6-
"github.com/halfrost/leetcode-go/structures"
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

0 commit comments

Comments
 (0)