Skip to content

Commit a7e9cad

Browse files
committed
Add newline at the end of file
1 parent fa7a304 commit a7e9cad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

maximum-depth-of-binary-tree/Jeehay28.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ var maxDepth = function (root) {
3434

3535
// Return the maximum of the two depths plus 1 for the current node
3636
return Math.max(leftDepth, rightDepth) + 1;
37-
};
37+
};
38+

0 commit comments

Comments
 (0)