Skip to content

Commit 4047743

Browse files
committed
인라인 추가
1 parent 8d64494 commit 4047743

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

validate-binary-search-tree/eunhwa.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ private boolean isValidBSTHelper(TreeNode node, long min, long max) {
2323
return isValidBSTHelper(node.left, min, node.val) && isValidBSTHelper(node.right, node.val, max);
2424
}
2525
}
26+

0 commit comments

Comments
 (0)