- 1) Given 2 string arrays(sorted in descending order), one for sales team, one for marketting in the form - [" $500: employee_name: employee_designation", "$ 300: employee_name: employee_designation"] Find median salary among all employees for both teams
- [4. Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/)
- 2) Extend this to n arrays from n different teams. Find median for all employees. They focused on testing the code, you'd clear the round if your code gives right output for their test cases.
- [23. Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists/)