Skip to content

Instantly share code, notes, and snippets.

@scabbiaza
Created March 3, 2016 11:23
Show Gist options
  • Save scabbiaza/18b475cdba47a0a6a8cd to your computer and use it in GitHub Desktop.
Save scabbiaza/18b475cdba47a0a6a8cd to your computer and use it in GitHub Desktop.
hanoi game on generators
import {filter, head, range} from "ramda";
const TOWERS_COUNT = 3;
// Int -> Int -> Int
let getIntermidiateDest = (from, to) => head(range(0, TOWERS_COUNT).filter(i => i != from & i != to));
// Int -> Int -> Int -> {a}
function *hanoi(n, from, to) {
if (n==0) return;
if (from == to) return;
let via = getIntermidiateDest(from, to);
yield *hanoi(n-1, from, via);
yield({from, to});
yield *hanoi(n-1, via, to);
}
let game = hanoi(4, 0, 2);
for (let step of game) {
console.log(`move top disk from ${step.from} -> ${step.to}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment