towers-of-hanoi
v1.1.1
Published
A solution to the Towers of Hanoi problem
Downloads
12
Maintainers
Readme
Towers of Hanoi
A JavaScript library implementing a solution to the Towers of Hanoi problem.
How to use
import {solveHanoi, steps} from 'towers-of-hanoi';
const n = 3;
console.log(`For ${n} disks ${steps(n)} steps are required.`);
console.log('The solution is as follows:');
for (let move of solveHanoi(n)) {
console.log(JSON.stringify(move));
}
Example application
This application was built using this library. Github is here