Skip to content

Commit 7d8dc07

Browse files
committed
개행 문자 수정
1 parent 3191122 commit 7d8dc07

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

validate-binary-search-tree/krokerdile.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ def validate(node, low, high):
1313
return validate(node.left, low, node.val) and validate(node.right, node.val, high)
1414

1515
return validate(root, float('-inf'), float('inf'))
16-

0 commit comments

Comments
 (0)