예제 #1
0
 public void Part2()
 {
     Day02.Part2().Should().Be(3842356);
 }
예제 #2
0
 public void RibbonTests(int w, int h, int l, int expected)
 {
     Day02.RibbonNecessary(w, h, l).Should().Be(expected);
 }
예제 #3
0
 public void Part1()
 {
     Day02.Part1().Should().Be(1606483);
 }
예제 #4
0
 public void PaperTests(int w, int h, int l, int expected)
 {
     Day02.PaperNecessary(w, h, l).Should().Be(expected);
 }