We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3191122 commit 7d8dc07Copy full SHA for 7d8dc07
validate-binary-search-tree/krokerdile.py
@@ -13,4 +13,3 @@ def validate(node, low, high):
13
return validate(node.left, low, node.val) and validate(node.right, node.val, high)
14
15
return validate(root, float('-inf'), float('inf'))
16
-
0 commit comments