From bacf8553c5527d9f14c4093aa789c8f6c900ebdc Mon Sep 17 00:00:00 2001 From: Yudong Jin Date: Mon, 2 Jan 2023 18:42:58 +0800 Subject: [PATCH] Update linked_list.go --- codes/go/chapter_array_and_linkedlist/linked_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codes/go/chapter_array_and_linkedlist/linked_list.go b/codes/go/chapter_array_and_linkedlist/linked_list.go index e7fdb35ca..106e49f4c 100644 --- a/codes/go/chapter_array_and_linkedlist/linked_list.go +++ b/codes/go/chapter_array_and_linkedlist/linked_list.go @@ -5,7 +5,7 @@ package chapter_array_and_linkedlist import ( - "github.com/krahets/hello-algo/pkg" + . "github.com/krahets/hello-algo/pkg" ) /* 在链表的结点 n0 之后插入结点 P */