private static void TestMax(int thisNumber, int expected) { int[] factors = new Factors().GetPrimeFactorsOf(thisNumber); int max = factors.Max(); max.Should().Be(expected); }
static void Main(string[] args) { int[] factors = new Factors().GetPrimeFactorsOf(600851475143); int max = factors.Max(); Console.WriteLine("The result is: {0}", max); Console.ReadLine(); }