public void TestCountPointsWithMoreThan1Overlap(bool flatLinesOnly, int expectedCount)
 {
     Assert.AreEqual(expectedCount, hydroThermalVentAnalyser.CountPointsWithMoreThan1Overlap(flatLinesOnly));
 }
예제 #2
0
 protected override int SolvePartOne()
 {
     return(hydroThermalVentAnalyser.CountPointsWithMoreThan1Overlap(true));
 }