Exemplo n.º 1
0
 public void ExampleTwo()
 {
     Day03.PartTwo(new[]
     {
         "..##.......",
         "#...#...#..",
         ".#....#..#.",
         "..#.#...#.#",
         ".#...##..#.",
         "..#.##.....",
         ".#.#.#....#",
         ".#........#",
         "#.##...#...",
         "#...##....#",
         ".#..#...#.#"
     })
     .Should()
     .Be(336);
 }
Exemplo n.º 2
0
 public void PartTwo() =>
     Output
         .WriteLine($"Combined encountered: {Day03.PartTwo(Input)}");