Skip to content

Commit 589eb10

Browse files
committed
Remove console log
1 parent 0ea56a2 commit 589eb10

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

1343.大小为 K 且平均值大于等于阈值的子数组数目.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,3 @@ var numOfSubarrays = function(arr, k, threshold) {
2121

2222
return result;
2323
};
24-
25-
console.log(numOfSubarrays(arr = [7,7,7,7,7,7,7], k = 7, threshold = 7));

695.岛屿的最大面积.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,3 @@ var maxAreaOfIsland = function(grid) {
5757
return result;
5858
};
5959
// @lc code=end
60-
61-
// console.log(maxAreaOfIsland(
62-
// [[0,0,1,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,1,1,0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,1,0,1,0,0],[0,1,0,0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,1,1,0,0,0,0]]
63-
// ));

0 commit comments

Comments
 (0)