Two student teams worked on the same coding lab, but their scores were recorded separately and are already sorted.

You are given:

Your task is to find the median score after considering both teams together.

⚠️ You are not allowed to fully merge the two lists.


🧩 Problem Statement/ Function Requirement

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