Advertisement
valdeEdius

mutated int[][]

Mar 27th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. int[][] gameArray = new int[9][9];
  2. int[][]key=createSolveMap(gameArray);
  3. private static int[][] createSolveMap(int[][]map)
  4.   {
  5.     int[][]key=map;
  6.     solveMap(0,0,key);
  7.     return key;
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement