Leetcode 0073. Set Matrix Zeroes
Posted on Sun 12 January 2025 in Leetcode • Tagged with matrix
Question Link : https://leetcode.com/problems/set-matrix-zeroes/
Difficulty: Medium
Premium: False
Question
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 1:
Input: matrix = [[1,1,1],[1,0,1],[1 …
Continue reading