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 c6aface commit 9a3a016Copy full SHA for 9a3a016
validate-binary-search-tree/Ujoonnee.java
@@ -21,4 +21,4 @@ boolean valid(TreeNode node, long min, long max) {
21
22
return valid(node.left, min, node.val) && valid(node.right, node.val, max);
23
}
24
-}
+}
0 commit comments