Example #1
0
 public void Part1()
 {
     Day08.Part1().Should().Be(2480);
 }
Example #2
0
 public void Part2()
 {
     Day08.Part2().Should().Be("ZYBLH");
 }
Example #3
0
 public void CheckSum(string imageData, int width, int height, int expectedCheckSum)
 {
     Day08.CheckSum(imageData, width, height).Should().Be(expectedCheckSum);
 }