fix(sortedlistmerge) remove node struct

This commit is contained in:
miguel 2024-01-29 17:51:36 +00:00 committed by MSilva95
parent 3184f19ef8
commit b3fd7a9e29
1 changed files with 0 additions and 5 deletions

View File

@ -5,11 +5,6 @@ import (
"piscine"
)
type NodeI struct {
Data int
Next *NodeI
}
func PrintList(l *piscine.NodeI) {
it := l
for it != nil {