MCPcopy Create free account
hub / github.com/Ainevsia/Leetcode-Rust / TreeNode

Method TreeNode

543. Diameter of Binary Tree/Solution.cpp:18–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16 TreeNode *left;
17 TreeNode *right;
18 TreeNode(int x) : val(x), left(NULL), right(NULL) {}
19};
20
21class Solution {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected