fix(go): fix support basic pkg

This commit is contained in:
reanon
2022-11-26 01:17:48 +08:00
parent 07a359484b
commit aa7a32efe0
3 changed files with 4 additions and 4 deletions

View File

@@ -24,8 +24,8 @@ func NewListNode(v int) *ListNode {
}
}
// ArrayToLinkedListLinkedList Generate a linked list with an array
func ArrayToLinkedListLinkedList(arr []int) *ListNode {
// ArrayToLinkedList Generate a linked list with an array
func ArrayToLinkedList(arr []int) *ListNode {
// dummy header of linked list
dummy := NewListNode(0)
node := dummy

View File

@@ -8,7 +8,7 @@ import "testing"
func TestListNode(t *testing.T) {
arr := []int{2, 3, 5, 6, 7}
head := ArrayToLinkedListLinkedList(arr)
head := ArrayToLinkedList(arr)
PrintLinkedList(head)
node := GetListNode(head, 5)