Desktop OnlyOur product is currently optimized for best experience on desktop device only
Problem
Submissions

Problem: Set Matrix Zeroes

Statement

Given a matrix, mat, if any element within the matrix is zero, set that row and column to zero. The performed operations should be in place, i.e., the given matrix is modified directly without allocating another matrix.

Constraints:

  • 1≤1 \le mat.row, mat.col ≤20\le 20
  • −231≤-2^{31} \le mat[i][j] ≤231−1\le 2^{31} - 1