Day10
This commit is contained in:
@@ -7,8 +7,8 @@ internal class Program
|
||||
int[][] matrix = new int[][] { new int[] { 1,1,1 },
|
||||
new int[] { 1,1,0 },
|
||||
new int[] { 1,0,1 } };
|
||||
var res = new Solution().FloodFill(matrix, 1,1, 2);
|
||||
foreach(var row in res)
|
||||
var res = new Solution().FloodFill(matrix, 1, 1, 2);
|
||||
foreach (var row in res)
|
||||
Console.WriteLine(String.Join(" ", row));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user