Problem
Ask
Submissions

Problem: Maximal Rectangle

Medium
30 min
Explore how to identify the largest rectangle containing only 1s in a binary matrix. Understand the problem constraints and apply dynamic programming methods to develop optimal solutions. Practice implementing your approach in a coding environment to strengthen your problem-solving skills.

Statement

Given a binary matrix filled with 0’s and 1’s, find the largest rectangle containing only 1’s and return its area.

Constraints:

  • rows ==== matrix.length

  • cols ==== matrix[i].length

  • 11 \leq rows, cols 200\leq 200

  • matrix[i][j] is ‘0’ or ‘1’.

Problem
Ask
Submissions

Problem: Maximal Rectangle

Medium
30 min
Explore how to identify the largest rectangle containing only 1s in a binary matrix. Understand the problem constraints and apply dynamic programming methods to develop optimal solutions. Practice implementing your approach in a coding environment to strengthen your problem-solving skills.

Statement

Given a binary matrix filled with 0’s and 1’s, find the largest rectangle containing only 1’s and return its area.

Constraints:

  • rows ==== matrix.length

  • cols ==== matrix[i].length

  • 11 \leq rows, cols 200\leq 200

  • matrix[i][j] is ‘0’ or ‘1’.