I didn’t understand in which format input was given( inorder, level order, etc). My code for least common ancestor is working on leet code.
I can't pass all testcases!
Hello @jainutkarsh0211,
You forgot to comment one extra cout, inside lowest_common_ancestor function
if(l&&r){ cout<<root->data; return root; }
1 Like
thanks alot!!!
1 Like
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.