public void Part2Problem()
 {
     //How many different passwords within the range given in your puzzle input meet these criteria?
     //Your puzzle input is 278384-824795.
     Assert.AreEqual(603, PasswordChecker.PasswordCheck(278384, 824795, true));
 }