Day6. Namespace style
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
namespace _240._Search_a_2D_Matrix_II
|
||||
namespace _240._Search_a_2D_Matrix_II;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
internal class Program
|
||||
static void Main(string[] args)
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
int[][] matrix = new int[][] { new int[] { 1, 1, 1, 1 } };
|
||||
Console.WriteLine(new Solution().SearchMatrix(matrix, 2));
|
||||
}
|
||||
int[][] matrix = new int[][] { new int[] { 1, 1, 1, 1 } };
|
||||
Console.WriteLine(new Solution().SearchMatrix(matrix, 2));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user