Skip to content

Commit 5cb9b97

Browse files
committed
fix: lint를 위해 추가
1 parent 8261cc5 commit 5cb9b97

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

validate-binary-search-tree/ymir0804.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ public boolean isValid(TreeNode node, long min, long max) {
1212
return isValid(node.left, min, node.val) && isValid(node.right, node.val, max);
1313
}
1414

15-
}
15+
}
16+

0 commit comments

Comments
 (0)