Files
Leetcode/240. Search a 2D Matrix II/Program.cs
Electrominch e711e64e07 Clear
2022-10-07 00:48:48 +03:00

11 lines
285 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));
}
}
}