I encountered an interview question.
Given two sorted arrays.
Initially both have set set of elements but one element is removed from one array.
Find the element removed.
Constraint is we have to done it inplace in O(logn)
For ex:
arr1[]={1,2,3,8,12,16};
arr2[]={1,2,8,12,16};
element removed is 3