diff --git a/sudoku.go b/sudoku.go index 06ab7d0..b653289 100644 --- a/sudoku.go +++ b/sudoku.go @@ -1 +1,67 @@ -package main +package sudoku + + +const BOARD_SIZE = 9 +const SMALL_GRID_SIZE = 3 + + +func isPossible(grid [][]int, row int, col int, n int) bool { + // Check to see if number is unique for row and column + for i:=0; i