Skip to content

Instantly share code, notes, and snippets.

@marioosh
Created February 24, 2014 13:13
Show Gist options
  • Save marioosh/9188190 to your computer and use it in GitHub Desktop.
Save marioosh/9188190 to your computer and use it in GitHub Desktop.
Grid class for sudoku solver
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