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

Struct TreeNode

tasks/98.go:24–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24type TreeNode struct {
25 Val int
26 Left *TreeNode
27 Right *TreeNode
28}
29
30func isValidBST(root *TreeNode) bool {
31 var min *TreeNode

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected