Skip to content

Commit 6c1e4b0

Browse files
authored
235. Lowest Common Ancestor of a Binary Search Tree
1 parent 8547dc0 commit 6c1e4b0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

235. Lowest Common Ancestor of a Binary Search Tree

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Same as Lca of a Binary tree
12
if(!root)return NULL;
23

34
//Base Case

0 commit comments

Comments
 (0)