1351 solved

This commit is contained in:
onion 2020-05-04 16:06:40 +08:00
parent 0697726816
commit a6a505ae08

View File

@ -169,7 +169,8 @@ var countNegatives = function(arr) {
## 复杂度分析
时间复杂度: O(m)。
时间复杂度: O(mn)。 因为如果矩阵中所有的数都为正数那么要遍历整个矩阵所以时间复杂度是O(mn)。
空间复杂度O(1)。