private static void ShowSmallestIntAnswer(SmallestInt solution, int[] ints) { var answer = solution.solution(ints); Console.WriteLine($"The answer is {answer}"); }
private static void RunSmallestInt() { var solution = new SmallestInt(); ShowSmallestIntAnswer(solution, new[] { -1, 0, 1, 3, 8, 2, 1, -10, 4 }); }