Skip to content

Commit 1bbaffc

Browse files
author
jiyseo
committed
add newline
1 parent 39309a0 commit 1bbaffc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

validate-binary-search-tree/jiyseo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ def dfs(node, low, high) :
1515
return dfs(node.left, low, node.val) and dfs(node.right, node.val, high)
1616

1717
return dfs(root, float("-inf"), float("inf"))
18+

0 commit comments

Comments
 (0)