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)). ...

Two Sum

Summation Of Weights

Problem 1: Summation Of Weights You have a list of items in a warehouse and we need to find two items whose combined weight equals a specific target weight. For example, imagine you are managing an inventory of various products at a distribution center. Given a list of product weights [2kg, 3kg, 8kg, 6kg, 4kg] and a target weight of 9kg, your task is to find the indices of the two products whose combined weight equals the target. In this case, the output would be [1, 3] because the items at positions 1 and 3 (3kg and 6kg) add up to the target weight of 9kg. ...