2387. Median of a Row Wise Sorted Matrix

Updated: 2024-03-12
1 min read
[]

On This Page

LeetCode problem 2387

class Solution:
    def matrixMedian(self, grid: List[List[int]]) -> int:
        def count(x):
            return sum(bisect_right(row, x) for row in grid)

        m, n = len(grid), len(grid[0])
        target = (m * n + 1) >> 1
        return bisect_left(range(10**6 + 1), target, key=count)