TreeNode is a node in a binary tree data structure.
| 3 | |
| 4 | // TreeNode is a node in a binary tree data structure. |
| 5 | type TreeNode struct { |
| 6 | Left *TreeNode |
| 7 | Right *TreeNode |
| 8 | Val int |
| 9 | } |
| 10 | |
| 11 | // ListNode is a node in a singly-linked list. |
| 12 | type ListNode struct { |
nothing calls this directly
no outgoing calls
no test coverage detected