Fix go report

This commit is contained in:
halfrost
2022-09-08 14:55:40 -07:00
parent 2a40f7cefb
commit e227edf55a
255 changed files with 273 additions and 280 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