Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ainevsia/Leetcode-Rust
/ TreeNode
Method
TreeNode
98. Validate Binary Search Tree/Solution.cpp:16–16 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
14
TreeNode *left;
15
TreeNode *right;
16
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
17
};
18
19
class Solution {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected