Exemplo n.º 1
0
        public void SmallMap()
        {
            var input = new[]
            {
                ".#..#",
                ".....",
                "#####",
                "....#",
                "...##",
            };

            var result = _day10.BestLocationForStation(input);

            Assert.AreEqual(result, (8, 3, 4));
        }