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