We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ecc25 commit c6d6330Copy full SHA for c6d6330
maximum-depth-of-binary-tree/gitsunmin.ts
@@ -19,4 +19,4 @@ export function maxDepth(root: TreeNode | null): number {
19
if (!root) return 0;
20
21
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
22
-};
+};
reorder-list/gitsunmin.ts
@@ -50,4 +50,4 @@ function reorderList(head: ListNode | null): void {
50
first = temp1;
51
second = temp2;
52
}
53
0 commit comments