Jelajahi Sumber

Correção discos repetidos

Correção de bug que repetia os discos ao mudar para um número menor de discos.
Gustavo Grancieiro 3 tahun lalu
induk
melakukan
a1fcf19bad
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      ihanoi/js/ihanoi.js

+ 1 - 1
ihanoi/js/ihanoi.js

@@ -267,7 +267,7 @@ function reiniciar (nD) {
     }
   topoHasteA = nDiscos-1;
   topoHasteB = topoHasteC = -1;
-  for (i=0; i<nDiscos; i++) { // >
+  for (i=0; i<=nDiscos; i++) { // >
     matHastes[1][i] = -1;
     matHastes[2][i] = -1;
     }