Last active
August 30, 2018 18:21
-
-
Save kdichev/3d43cc8eff798be1b118f2d22e3698f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// data contains width * height walkable path entries | |
// each entry has at most two walls "west" | "north" | |
// to find all walkable directions from X use the array entries X, X+1 and X+width to construct walls | |
// grid is 15x15 blocks | |
const data = [["west","north"],["north"],["west","north"],["north"],["north"],["west","north"],["north"],["north"],["west","north"],["north"],["north"],["north"],["west","north"],["north"],["north"],["west","north"],["west"],["west"],["north"],["west"],["west"],["west"],["west"],["north"],["north"],[],["west"],["north"],["north"],[],["west"],[],["west"],["west"],["north"],[],["west"],["north"],["north"],["west","north"],["north"],[],["west","north"],["north"],["west"],["west"],["north"],["north"],["west"],["north"],["north"],["north"],["north"],["west"],["north"],["north"],["north"],["west"],["west"],["west"],["west","north"],["north"],["west"],["west"],["west","north"],["north"],["north"],["west"],["west","north"],["north"],["west"],["west"],[],["west"],["north"],["west"],["west"],["west"],["west"],["west"],["west","north"],[],["west","north"],[],["west"],["north"],["north"],["west","north"],["north"],[],["west"],["west"],["west"],["north"],[],["west"],["west","north"],[],["north"],["north"],["west","north"],[],["west"],["west","north"],[],["west"],["west"],["north"],["north"],["north"],["west"],["north"],["west","north"],["north"],[],["west"],["north"],["west"],["west"],["north"],["west"],["west","north"],["north"],["west"],["north"],["north"],["west"],["west"],["north"],["west","north"],["north"],["west"],[],["west","north"],["west"],["west"],["north"],[],["north"],["north"],["west"],["west"],["west","north"],[],["west"],["west"],["north"],["north"],[],["west"],["west","north"],["north"],["north"],["west","north"],[],["west"],[],["west"],["west","north"],["west"],["north"],["west","north"],["north"],["west","north"],[],["west"],["north"],["west","north"],[],["west","north"],["north"],["north"],[],["west"],["west"],["west"],[],["west"],["west"],["north"],["west","north"],[],["west"],["north"],["west"],["west","north"],["west","north"],["north"],[],["west"],["north"],["west","north"],["west"],["north"],["west"],["west"],["west"],["north"],["west"],[],["west"],[],["west","north"],["west"],["west","north"],[],["west"],["west"],["north"],["west"],["west"],["north"],["north"],["north"],["north"],[],["north"],[],["west"],[],["north"],[],["north"],["west"],[]] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment