Tagged Questions
0
votes
1answer
179 views
Find median of 2 sorted arrays with different lengths
I'm trying to solve the below problem for my assignment but I have no clue how to find the time algorithm. If I have two arrays of same even length then I get, $T(n) = T(n/2) + \theta(n)$
but what ...