Ejemplo n.º 1
0
 private static bool courseScheduleTest2()
 {
     string[] solution = CourseSchedule.compute(new string[, ] {
         { "a", "b" }, { "b", "c" }, { "c", "d" }
     });
     return(solution.SequenceEqual(new string[] { "a", "b", "c", "d" }));
 }
Ejemplo n.º 2
0
 private static bool courseScheduleTest5()
 {
     string[] solution = CourseSchedule.compute(new string[, ] {
     });
     return(solution.SequenceEqual(new string[] {}));
 }