Search⌘ K
AI Features

Solution: Smallest Rectangle Enclosing Black Pixels

Explore how to identify the smallest axis-aligned rectangle enclosing all connected black pixels in a binary matrix. Learn to apply binary search on row and column projections for an efficient solution with optimal runtime and constant space complexity.

Statement

You are given an m×nm \times n binary matrix image, where 0 ...