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

@@ -18,7 +18,7 @@ func TestLinearSearch(t *testing.T) {
t.Log("目标元素 3 的索引 = ", index)
// 在链表中执行线性查找
head := ArrayToLinkedListLinkedList(nums)
head := ArrayToLinkedList(nums)
node := linerSearchLinkedList(head, target)
t.Log("目标结点值 3 的对应结点对象为 ", node)
}