diff --git a/subjects/listsize.en.md b/subjects/listsize.en.md index 1c076c40..da623774 100644 --- a/subjects/listsize.en.md +++ b/subjects/listsize.en.md @@ -7,14 +7,14 @@ Write a function `ListSize` that returns the number of elements in the list. ### Expected function and structure ```go -type Node struct { +type NodeL struct { Data interface{} - Next *Node + Next *NodeL } type List struct { - Head *Node - Tail *Node + Head *NodeL + Tail *NodeL } func ListSize(l *List) int {