Exemplo n.º 1
0
 public void TowersOfHanoiTest()
 {
     for (int i = 1; i <= 7; i++)
     {
         TowersOfHanoi.Recursion(i);
     }
 }