* Definition for singly-linked list.
| 6 | |
| 7 | // * Definition for singly-linked list. |
| 8 | type ListNode struct { |
| 9 | Val int |
| 10 | Next *ListNode |
| 11 | } |
| 12 | |
| 13 | func mergeTwoLists(fList *ListNode, sList *ListNode) *ListNode { |
| 14 | var head *ListNode |
nothing calls this directly
no outgoing calls
no test coverage detected