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 16e62ea commit 0bc5a5dCopy full SHA for 0bc5a5d
validate-binary-search-tree/yayyz.py
@@ -22,7 +22,4 @@ def is_bst(node):
22
return True, min(left_min, node.val), max(right_max, node.val)
23
24
valid, _, _ = is_bst(root)
25
- return valid
26
-
27
28
+ return valid
0 commit comments