Day 5: Coding Challenge
Shraddha M Thakur
Software Developer | Actively Seeking Opportunities | Computer Applications Graduate | Passionate about Product Innovation
Two sorted arrays are given let's say num1 and num2 respectively, we have to return the median of these two arrays. Condition is overall time complexity should be O(log(m+n)) Solutions -> 1st approach is to get the resultant array by combining two arrays using the pointer approach to get ">