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

@ -3,7 +3,7 @@ package leetcode
import (
"math/rand"
"github.com/halfrost/LeetCode-Go/structures"
"github.com/halfrost/leetcode-go/structures"
)
// ListNode define
@ -20,8 +20,10 @@ type Solution struct {
head *ListNode
}
/** @param head The linked list's head.
Note that the head is guaranteed to be not null, so it contains at least one node. */
/*
- @param head The linked list's head.
Note that the head is guaranteed to be not null, so it contains at least one node.
*/
func Constructor(head *ListNode) Solution {
return Solution{head: head}
}