static void Main(string[] args)
        {
            TestCode2 _testCode = new TestCode2();

            string[] height = { "5#4", "6#2", "5#1", "6#6" };
            _testCode.MaxHeight(height, height.Length);
        }
        public bool test()
        {
            TestCode2 tested = new TestCode2();

            string[] height = { "5#8", "5#7", "6#0", "5..7" };
            int      size   = height.Length;

            tested.MaxHeight(height, size);
            return(true);
        }