We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4b3e8b commit bba3410Copy full SHA for bba3410
src/main/java/com/fishercoder/solutions/_221.java
@@ -1,18 +1,5 @@
1
package com.fishercoder.solutions;
2
3
-/**
4
- * 221. Maximal Square
5
- *
6
- * Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area.
7
-
8
- For example, given the following matrix:
9
10
- 1 0 1 0 0
11
- 1 0 1 1 1
12
- 1 1 1 1 1
13
- 1 0 0 1 0
14
- Return 4.
15
- */
16
public class _221 {
17
18
public static class Solution1 {
0 commit comments