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

Struct ListNode

tasks/23.go:10–13  ·  view source on GitHub ↗

* Definition for singly-linked list.

Source from the content-addressed store, hash-verified

8
9// * Definition for singly-linked list.
10type ListNode struct {
11 Val int
12 Next *ListNode
13}
14
15func mergeKLists(lists []*ListNode) *ListNode {
16

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected