public void SolvePart1() { var hc = new Honeycomb(); hc.FlipTiles(File.ReadAllLines("input.txt")); hc.CountBlackTiles().ShouldBe(0); }
public void TextOnExampleInput() { var hc = new Honeycomb(); hc.FlipTiles(example); hc.CountBlackTiles().ShouldBe(10); }