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