Skip to content

Commit 8b3ca33

Browse files
committed
fix: 개행 문자 추가
1 parent 4a8df0e commit 8b3ca33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maximum-depth-of-binary-tree/YeomChaeeun.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ function maxDepth(root: TreeNode | null): number {
2929
if (node.right) stack.push([node.right, depth + 1]);
3030
}
3131
return max
32-
}
32+
}

0 commit comments

Comments
 (0)