Leetcode: Set Matrix Zeroes (Part 1)
This problem, of medium difficulty, sounds trivial at first glance. However, given the constraints, it’s not as straightforward as it initially appears. The Problem The problems is set-up as seen here: Set Matrix Zeroes - LeetCode Given an m x n integer matrix matrix, if an element is 0, set its entire row and column to 0’s, and return the matrix. You must do it in place. Constraints: m == matrix....