We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861981a commit c2856a8Copy full SHA for c2856a8
src/main/java/com/fishercoder/solutions/_73.java
@@ -1,17 +1,5 @@
1
package com.fishercoder.solutions;
2
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
- */
15
public class _73 {
16
17
public static class Solution1 {
0 commit comments