Median of Two Sorted Arrays

Sales Of Two Departments

Problem You are managing two different departments within a company that have collected sales data. The first department (hardware) has recorded sales figures for ‘h’ number of products, while the second department (software) has recorded sales figures for ’s number of products. Both sets of data are sorted in ascending order. you are asked to find the median of these two sorted sales data (arrays) The overall run time complexity should be O(log (m+n)). ...