Beispiel #1
0
        public static void MaxProduct()
        {
            List <int> list = new List <int>()
            {
                -2, -3, -3, 0, 1
            };

            Assert.That(MathQ.MaxProduct(list) == 9);
        }