Given an m x n matrix, if an element is 0, set its entire row and column to 0. Do it in-place.
Output matrix rows, space-separated.
1,1,1 1,0,1 1,1,1
1 0 1 0 0 0 1 0 1