Beispiel #1
0
 public void TestMediumInput()
 {
     TestUtility.Test(UFInput.InputType.Medium, (n) => new QuickFindUF(n), 3);
 }
Beispiel #2
0
 public void TestLargeInput()
 {
     TestUtility.Test(UFInput.InputType.Large, (n) => new QuickFindUF(n), 6);
 }
Beispiel #3
0
 public void TestTinyInput()
 {
     TestUtility.Test(UFInput.InputType.Tiny, (n) => new QuickFindUF(n), 2);
 }