Example #1
0
 public void Solution_Part_Two_Selfmade_Test()
 {
     Assert.Equal(282_703_590, DayOne.SolutionPartTwo(new List <int>()
     {
         333, 1284, 2021, 1124, 896, 485, 689, 846
     }));
 }
Example #2
0
 public void Solution_Part_Two_Provided_Test()
 {
     Assert.Equal(241_861_950, DayOne.SolutionPartTwo(new List <int>()
     {
         1721, 979, 366, 299, 675, 1456, 366, 675
     }));
 }