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 8261cc5 commit 5cb9b97Copy full SHA for 5cb9b97
validate-binary-search-tree/ymir0804.java
@@ -12,4 +12,5 @@ public boolean isValid(TreeNode node, long min, long max) {
12
return isValid(node.left, min, node.val) && isValid(node.right, node.val, max);
13
}
14
15
-}
+}
16
+
0 commit comments