-
-
Save shelaf/ea590268c6ce20890956c38890f75607 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
int[][] map = new int[][]{ | |
new int[]{-1, 1, 1, -1, -1, 1, 1, -1, -1, 1}, | |
new int[]{ 1, 36, 1, 0, -1, -1, -1, -1, -1, -1}, | |
new int[]{-1, -1, -1, 1, 1, -1, 1, -1, 1, 1}, | |
new int[]{ 1, 0, -1, -1, 1, -1, 1, -1, 1, -1}, | |
new int[]{-1, 1, 1, -1, -1, -1, -1, 0, 1, -1}, | |
new int[]{ 1, -1, 1, -1, -1, 1, -1, 1, -1, 1}, | |
new int[]{-1, 0, -1, -1, -1, 1, -1, -1, -1, 1}, | |
new int[]{-1, 1, -1, 1, 1, -1, 1, -1, -1, -1}, | |
new int[]{-1, 1, -1, -1, -1, 1, 1, -1, -49, 1}, | |
new int[]{-1, -1, 1, 1, -1, -1, -1, 1, -1, -1} | |
}; | |
start = map[1][1] | |
goal = map[9][9] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment