11 lines
272 B
C#
11 lines
272 B
C#
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));
|
|
}
|
|
}
|
|
} |