Skip to content

Commit c2856a8

Browse files
refactor 73
1 parent 861981a commit c2856a8

File tree

1 file changed

+0
-12
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-12
lines changed

src/main/java/com/fishercoder/solutions/_73.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 73. Set Matrix Zeroes
5-
*
6-
* Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.
7-
8-
Follow up:
9-
10-
Did you use extra space?
11-
A straight forward solution using O(mn) space is probably a bad idea.
12-
A simple improvement uses O(m + n) space, but still not the best solution.
13-
Could you devise a constant space solution?
14-
*/
153
public class _73 {
164

175
public static class Solution1 {

0 commit comments

Comments
 (0)