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 f4933a2 commit 85d67d1Copy full SHA for 85d67d1
problems/221.maximal-square.md
@@ -98,4 +98,7 @@ var maximalSquare = function(matrix) {
98
};
99
```
100
101
+***复杂度分析***
102
+- 时间复杂度:$O(M * N)$,其中M为行数,N为列数。
103
+- 空间复杂度:$O(N)$,其中N为列数。
104
0 commit comments