Add go module in root directory

This commit is contained in:
halfrost
2022-09-10 16:41:11 -07:00
parent e2a72e6212
commit 9437625832
270 changed files with 319 additions and 271 deletions

View File

@ -1,6 +1,6 @@
package leetcode
import "github.com/halfrost/leetcode-go/structures"
import "github.com/halfrost/LeetCode-Go/structures"
// TreeNode define
type TreeNode = structures.TreeNode

View File

@ -4,7 +4,7 @@ import (
"fmt"
"testing"
"github.com/halfrost/leetcode-go/structures"
"github.com/halfrost/LeetCode-Go/structures"
)
type question701 struct {

View File

@ -57,7 +57,7 @@ Output: [4,2,7,1,3,5]
```go
package leetcode
import "github.com/halfrost/leetcode-go/structures"
import "github.com/halfrost/LeetCode-Go/structures"
// TreeNode define
type TreeNode = structures.TreeNode