Day5
This commit is contained in:
11
74. Search a 2D Matrix/Program.cs
Normal file
11
74. Search a 2D Matrix/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace _74._Search_a_2D_Matrix
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
int[][] matrix = new int[][] { new int[] { 1 }};
|
||||
Console.WriteLine(new Solution().SearchMatrix(matrix, 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user