Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 650 Bytes

File metadata and controls

41 lines (25 loc) · 650 Bytes

题目描述

在一个由 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

...