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 39309a0 commit 1bbaffcCopy full SHA for 1bbaffc
validate-binary-search-tree/jiyseo.py
@@ -15,3 +15,4 @@ def dfs(node, low, high) :
15
return dfs(node.left, low, node.val) and dfs(node.right, node.val, high)
16
17
return dfs(root, float("-inf"), float("inf"))
18
+
0 commit comments