Skip to content

Commit 8117957

Browse files
authored
Improved task 73
1 parent deed1c5 commit 8117957

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/scala/g0001_0100/s0073_set_matrix_zeroes/Solution.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package g0001_0100.s0073_set_matrix_zeroes
55
// #2023_11_02_Time_557_ms_(90.91%)_Space_57.7_MB_(36.36%)
66

77
object Solution {
8+
@SuppressWarnings(Array("scala:S3776"))
89
def setZeroes(matrix: Array[Array[Int]]): Unit = {
910
val m = matrix.length
1011
val n = matrix(0).length

0 commit comments

Comments
 (0)