Description: Given an m x n integer matrix matrix, if an element is 0, set its entire row and column to 0's. You must do it in place. Example: Input: matrix = [[1,1,1],[1,0,1],[1,1,1]] Output: [[1,0,1],[0,0,0],[1,0,1]] Constraints: m == matrix.lengt...
koustavhazra.hashnode.dev6 min read
No responses yet.