Sudoku JavaScript Implementation
Sudoku Algorithm (no backtracking)
This program fills the 9*9 grid with valid numbers. 2 dimension arrays play an important role in most 2d games. Sudoku is no exception, consider it as screen where we need to place tiles at valid position. We pick a box try to insert a number there, run all the rules, if it works good if not try the next number. This implementation don't use recursion or traditional back tracking, although parts of algorithm tries to replicate the same scenario i.e. back track your steps and start with next iteration. Heart of this program is a javascript file sudokucode.js
Detailed Algorithm
For each of the nine box do below
Front End | Reactjs with bootstrap |
Back End | nodejs server with mysql DB |
Hosting for front end | Firebase |
Hosting for back end | AWS Server |
Developer | Vivek Sharma |
Github | profile |
Repository | repo |
There could be many means to achieve an objective in coding. All are correct as long as they meet a certain performance threshold. If you review the program in detail you will notice small steps have been added to improve performance ( in short terms number of loops the program jumps through). I have left a debugging message in the output
"Got stuck gotta redo some steps."
This line keeps track of number of times the program back tracked its step. Feel free to experiment with different parts of the algorithm to see how it impacts this. Right now it at most runs once or twice.
Updates
Added functionality to read params if /?val=nshowmenu is present don't show menu.
Mobile friendly, no menu and smaller blocks so fits vertically
Added options to save game state and load it, for this login is required, so added functionality for google login
Added option to share game with a friend, there is a button which will generate a link in clipboard, this sharable link will create same game for user