Files
2022-10-07 16:36:27 +03:00

10 lines
251 B
C#

namespace _240._Search_a_2D_Matrix_II;
internal class Program
{
static void Main(string[] args)
{
int[][] matrix = new int[][] { new int[] { 1, 1, 1, 1 } };
Console.WriteLine(new Solution().SearchMatrix(matrix, 2));
}
}