diff --git a/code/code/mathematical_algorithms/src/tower_of_hanoi/tower_of_hanoi.js b/code/code/mathematical_algorithms/src/tower_of_hanoi/tower_of_hanoi.js index 60789db..aff9a1a 100644 --- a/code/code/mathematical_algorithms/src/tower_of_hanoi/tower_of_hanoi.js +++ b/code/code/mathematical_algorithms/src/tower_of_hanoi/tower_of_hanoi.js @@ -16,4 +16,4 @@ function towerOfHanoi(n, from_rod, to_rod, aux_rod) { return; } -towerOfHanoi(3, "A", "C", "B")); +towerOfHanoi(3, "A", "C", "B");