コード例 #1
0
ファイル: Day3Tests.cs プロジェクト: benbelow/adventofcode
 public void Part2()
 {
     Day03.Part2().Should().Be(16524);
 }
コード例 #2
0
ファイル: Day3Tests.cs プロジェクト: benbelow/adventofcode
 public void Part1()
 {
     Day03.Part1().Should().Be(896);
 }
コード例 #3
0
ファイル: Day3Tests.cs プロジェクト: benbelow/adventofcode
 public void FewestSteps(string input1, string input2, int expectedDistance)
 {
     Day03.GetFewestStepsToCrossOver(input1, input2).Should().Be(expectedDistance);
 }
コード例 #4
0
ファイル: Day3Tests.cs プロジェクト: benbelow/adventofcode
 public void ClosestIntersection(string input1, string input2, int expectedDistance)
 {
     Day03.GetClosestIntersection(input1, input2).Should().Be(expectedDistance);
 }