import java.io.*; import java.util.*; class SetMatrixZeroes { public void setMatrixZeroes(int[][] matrix) { int row = matrix.length; int col = matrix[0].length; int[] rowZero = new int[row]; int[] colZero = new int[col]; for(int i=0;i