Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 776 Bytes

File metadata and controls

47 lines (28 loc) · 776 Bytes

English Version

题目描述

在一个由 0 和 1 组成的二维矩阵内,找到只包含 1 的最大正方形,并返回其面积。

示例:

输入: 

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

输出: 4

解法

Python3

Java

...