Concept Flow - Set Matrix Zeroes In Place
Start: Given matrix
Scan matrix for zeros
Mark rows and columns to zero
Update matrix cells to zero based on marks
Done: Matrix updated in place
We scan the matrix to find zeros, mark their rows and columns, then update the matrix cells to zero accordingly, all done inside the original matrix.
