Exemplo n.º 1
0
 static void Main(string[] args)
 {
     RedSquare x = new RedSquare();
     int[] a = { 1 };
     int[] b = { 1 };
     Console.WriteLine(x.countTheEmptyReds(6, 5, a, b));
     Console.ReadLine();
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            RedSquare x = new RedSquare();

            int[] a = { 1 };
            int[] b = { 1 };
            Console.WriteLine(x.countTheEmptyReds(6, 5, a, b));
            Console.ReadLine();
        }