#Title: Sudoku solver -application
###Type: Game Browser
###Summary
###Objectives: -Build a web application from scratch, without a starter codebase -Use programming skills, algorithm to map solve the sudoku problem, ###Specification:
Brute force Sudoku solver
In Sudoku, the board is a 9x9 grid of SQUARES. There are 9 ROWS and 9 COLUMNS, there are also 9 3x3 BOXES. Rows, columns and boxes are all UNITs. ;; So there are 27 units. ;; ;; The idea of the game is to fill each square with ;; a Natural[1, 9] such that no unit contains a duplicate ;; number.