Screening Round
Questions:
- Given two lists, A and B where length of both lists is the same, find the minimum sum of A[i] + B[j] such that j >= i. 0 < A[i], B[j].
- Lowest Common Ancestor of a Binary Tree - same problem with the condition that the root is not given but nodes have pointers to their parent instead of children.
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.