Created
September 4, 2018 16:33
-
-
Save kdichev/8ee56ba6f97be766ed8198776e6548f4 to your computer and use it in GitHub Desktop.
example
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
// that needs to become something readable for a pathfinding algorithm like | |
// [ | |
// [0, 0, 0, 1, 0], | |
// [1, 0, 0, 0, 1], | |
// [0, 0, 1, 0, 0], | |
// ] | |
const apiData = [ | |
[ | |
"west", | |
"north" | |
], | |
[ | |
"west", | |
"north" | |
], | |
[ | |
"north" | |
], | |
[ | |
"north" | |
], | |
[ | |
"north" | |
], | |
[ | |
"north" | |
], | |
[ | |
"north" | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment