private static void Main()
        {
            var validator = new RoomValidator();

            Console.WriteLine(validator.GetSumOfSectorIdsOfRealRooms("InputFile.txt"));
            Console.WriteLine(validator.GetSectorIdOfNorthPoleObjectStorage());
        }
Beispiel #2
0
 public void SomeTest()
 {
     _validator.GetSumOfSectorIdsOfRealRooms(
         @"C:\dev\Jansson.AdventOfCode\src\Jansson.AdventOfCode.DayFour\Jansson.AdventOfCode.DayFour.Tests\TestInput.txt").Should().Be(1614);
 }