Пример #1
0
 public void Example3()
 {
     Assert.Equal(-6, Part1.Compute(new string[] { "-1", "-2", "-3" }));
 }
Пример #2
0
 public void Example1()
 {
     Assert.Equal(3, Part1.Compute(new string[] { "+1", "+1", "+1" }));
 }
Пример #3
0
 public void Example2()
 {
     Assert.Equal(0, Part1.Compute(new string[] { "+1", "+1", "-2" }));
 }