Two student teams worked on the same coding lab, but their scores were recorded separately and are already sorted.
You are given:
scoresA → sorted scores of Team AscoresB → sorted scores of Team BYour task is to find the median score after considering both teams together.
⚠️ You are not allowed to fully merge the two lists.
Write a function that takes two sorted integer arrays scoresA and scoresB and returns the median value as a floating-point number.
The solution must run in:
O(m + n) time