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

@@ -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)