Skip to content

Commit 9042b9b

Browse files
refactor 749
1 parent 6b06382 commit 9042b9b

File tree

1 file changed

+4
-2
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@
5656
Throughout the described process, there is always a contiguous viral region that will infect strictly more uncontaminated squares in the next round.
5757
*/
5858
public class _749 {
59-
public int containVirus(int[][] grid) {
60-
return -1;
59+
public static class Solution1 {
60+
public int containVirus(int[][] grid) {
61+
return -1;
62+
}
6163
}
6264
}

0 commit comments

Comments
 (0)