Example #1
0
 public void Part1()
 {
     Day04.Part1().Should().Be(475);
 }
Example #2
0
 public void Part2()
 {
     Day04.Part2().Should().Be(297);
 }
Example #3
0
 public void MeetsUpdatedCriteria(int password, bool shouldMatch)
 {
     Day04.MeetsPasswordCriteria(password, true).Should().Be(shouldMatch);
 }