Created
March 3, 2016 11:23
-
-
Save scabbiaza/18b475cdba47a0a6a8cd to your computer and use it in GitHub Desktop.
hanoi game on generators
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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