We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d64494 commit 4047743Copy full SHA for 4047743
validate-binary-search-tree/eunhwa.java
@@ -23,3 +23,4 @@ private boolean isValidBSTHelper(TreeNode node, long min, long max) {
23
return isValidBSTHelper(node.left, min, node.val) && isValidBSTHelper(node.right, node.val, max);
24
}
25
26
+
0 commit comments