Exemplo n.º 1
0
 public void Test1()
 {
     int[] peopleInLine = new int[] { 25, 25, 50, 50 };
     Assert.AreEqual("YES", VasyaClerk.Tickets(peopleInLine));
 }
Exemplo n.º 2
0
 public void Test2()
 {
     int[] peopleInLine = new int[] { 25, 100 };
     Assert.AreEqual("NO", VasyaClerk.Tickets(peopleInLine));
 }