Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/VanjaRo/LeetCode
/ Print
Method
Print
tasks/23.go:30–36 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
28
}
29
30
func
(l *ListNode) Print() {
31
tmp := l
32
for
tmp != nil {
33
fmt.Print(tmp.Val)
34
tmp = tmp.Next
35
}
36
}
37
38
func
mergeTwoLists(fList *ListNode, sList *ListNode) *ListNode {
39
// var min *ListNode
Callers
15
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
main
Function · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected