Tap here to switch tabs
Problem
Ask
Submissions

Problem: Median of Two Sorted Arrays

hard
40 min
Explore how to compute the median of two sorted integer arrays with an optimal algorithm that runs in logarithmic time. This lesson helps you understand the problem constraints and develop a solution focused on both time and space efficiency.

Statement

You’re given two sorted integer arrays, nums1 and nums2, of size mm and nn, respectively. Your task is to return the median of the two sorted arrays.

The overall run time complexity should be O(log(m,n))O(\log (m, n)).

Constraints:

  • nums1.length ==== mm

  • nums2.length ==== nn

  • 0m10000 \leq m \leq 1000

  • 0n10000 \leq n \leq 1000

  • 1m+n20001 \leq m + n \leq 2000

  • 105-10^5 \leq nums1[i], nums2[i] 105\leq 10^5

Tap here to switch tabs
Problem
Ask
Submissions

Problem: Median of Two Sorted Arrays

hard
40 min
Explore how to compute the median of two sorted integer arrays with an optimal algorithm that runs in logarithmic time. This lesson helps you understand the problem constraints and develop a solution focused on both time and space efficiency.

Statement

You’re given two sorted integer arrays, nums1 and nums2, of size mm and nn, respectively. Your task is to return the median of the two sorted arrays.

The overall run time complexity should be O(log(m,n))O(\log (m, n)).

Constraints:

  • nums1.length ==== mm

  • nums2.length ==== nn

  • 0m10000 \leq m \leq 1000

  • 0n10000 \leq n \leq 1000

  • 1m+n20001 \leq m + n \leq 2000

  • 105-10^5 \leq nums1[i], nums2[i] 105\leq 10^5