Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 518 Bytes

File metadata and controls

23 lines (13 loc) · 518 Bytes

Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.

For example, given the following matrix:

1 0 1 0 0
1 0 1 1 1
1 1 1 1 1
1 0 0 1 0

Return 4.

Credits:
Special thanks to @Freezen for adding this problem and creating all test cases.

Show Tags Dynamic Programming

Show Similar Problems (H) Maximal Rectangle