Skip to content

Commit 0a0445b

Browse files
committed
Lowest Common Ancestor Of A Binary Search Tree
1 parent 68c9451 commit 0a0445b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lowest-common-ancestor-of-a-binary-search-tree/TonyKim9401.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
1010
return lowestCommonAncestor(root.right, p, q);
1111
return root;
1212
}
13-
}
13+
}

0 commit comments

Comments
 (0)