MCPcopy Create free account
hub / github.com/VanjaRo/LeetCode / ListNode

Struct ListNode

tasks/21.go:8–11  ·  view source on GitHub ↗

* Definition for singly-linked list.

Source from the content-addressed store, hash-verified

6
7// * Definition for singly-linked list.
8type ListNode struct {
9 Val int
10 Next *ListNode
11}
12
13func mergeTwoLists(fList *ListNode, sList *ListNode) *ListNode {
14 var head *ListNode

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected