You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given to arrays find the median considering them as a single array
We can use extra space to store all the elements of both arrays and then according to the size of the final array we need to find the median i.e. if the number of
elements is even or odd (NOT SO GOOD APPROACH but fine for BRUTE FORCE)