Ejemplo n.º 1
0
        public void Part1( )
        {
            day21.PassWord = "******";
            var actual = day21.SolvePart1();

            Assert.AreEqual("decab", actual);
        }
Ejemplo n.º 2
0
        public void Part1( )
        {
            day21 = new Day21("day21");
            var actual = day21.SolvePart1( );

            Assert.AreEqual("78", actual);
        }
Ejemplo n.º 3
0
        public void Part1()
        {
            var result = Day21.SolvePart1(_input);

            Assert.Equal(2282, result);
        }
Ejemplo n.º 4
0
        public void Part1( )
        {
            var actual = day21.SolvePart1( );

            Assert.AreEqual("5", actual);
        }