Exemple #1
0
        private static void Test1(PillarsDivTwo p)
        {
            var height = new int[] { 3, 3, 3 };
            var w = 2;

            Console.WriteLine(p.maximalLength(height, w));
        }
Exemple #2
0
 static void Main(string[] args)
 {
     var p = new PillarsDivTwo();
     Program.Test1(p);
 }