Example #1
0
        public void SolvePart1()
        {
            var hc = new Honeycomb();

            hc.FlipTiles(File.ReadAllLines("input.txt"));
            hc.CountBlackTiles().ShouldBe(0);
        }
Example #2
0
        public void TextOnExampleInput()
        {
            var hc = new Honeycomb();

            hc.FlipTiles(example);
            hc.CountBlackTiles().ShouldBe(10);
        }