Exemplo n.º 1
0
        void Test(string input, int expectedResult)
        {
            var day2B  = new Day2B();
            var result = day2B.Solve(input);

            result.Should().Be(expectedResult);
        }
        static void Main(string[] args)
        {
            //var result = new Day1A().SolveProblem()
            //var result = new Day1B().SolveProblem()
            //var result = new Day2A().SolveProblem();
            var result = new Day2B().SolveProblem();

            Console.WriteLine(result);
        }
Exemplo n.º 3
0
 public void Setup()
 {
     day2B = new Day2B();
 }