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 deed1c5 commit 8117957Copy full SHA for 8117957
src/main/scala/g0001_0100/s0073_set_matrix_zeroes/Solution.scala
@@ -5,6 +5,7 @@ package g0001_0100.s0073_set_matrix_zeroes
5
// #2023_11_02_Time_557_ms_(90.91%)_Space_57.7_MB_(36.36%)
6
7
object Solution {
8
+ @SuppressWarnings(Array("scala:S3776"))
9
def setZeroes(matrix: Array[Array[Int]]): Unit = {
10
val m = matrix.length
11
val n = matrix(0).length
0 commit comments