Example #1
0
        private static void ShowSmallestIntAnswer(SmallestInt solution, int[] ints)
        {
            var answer = solution.solution(ints);

            Console.WriteLine($"The answer is {answer}");
        }