MCPcopy Create free account
hub / github.com/austingebauer/go-leetcode / ListNode

Struct ListNode

structures/IntTreeNode.go:12–15  ·  view source on GitHub ↗

ListNode is a node in a singly-linked list.

Source from the content-addressed store, hash-verified

10
11// ListNode is a node in a singly-linked list.
12type ListNode struct {
13 Val int
14 Next *ListNode
15}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected