MCPcopy 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
30func (l *ListNode) Print() {
31 tmp := l
32 for tmp != nil {
33 fmt.Print(tmp.Val)
34 tmp = tmp.Next
35 }
36}
37
38func mergeTwoLists(fList *ListNode, sList *ListNode) *ListNode {
39 // var min *ListNode

Callers 15

mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected