Created
February 24, 2014 13:13
-
-
Save marioosh/9188190 to your computer and use it in GitHub Desktop.
Grid class for sudoku solver
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
package sudoku; | |
/** | |
* Created with IntelliJ IDEA. | |
* User: marioosh | |
* Date: 23.02.2014 | |
* Time: 21:34 | |
*/ | |
public class Grid { | |
final int[][] grid; | |
public Grid(int[][] grid) { | |
this.grid = grid; | |
} | |
public int get(int i, int j) { | |
return grid[i][j]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment