mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 23:46:29 +08:00
Merge pull request #268 from guowei-gong/master
fix(go): linked list test name is misspelled
This commit is contained in:
commit
c97ef200a1
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ import (
|
||||||
. "github.com/krahets/hello-algo/pkg"
|
. "github.com/krahets/hello-algo/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestLikedList(t *testing.T) {
|
func TestLinkedList(t *testing.T) {
|
||||||
/* 初始化链表 1 -> 3 -> 2 -> 5 -> 4 */
|
/* 初始化链表 1 -> 3 -> 2 -> 5 -> 4 */
|
||||||
// 初始化各个结点
|
// 初始化各个结点
|
||||||
n0 := NewListNode(1)
|
n0 := NewListNode(1)
|
||||||
|
|
Loading…
Reference in a new issue