示例#1
0
 public static void MaxProfit()
 {
     int[] stocks = new int[] { 23171, 21011, 21123, 21366, 21013, 21367 };
     Assert.That(MathQ.MaxProfit(stocks) == 356); // second and fourth elements
 }