Skip to content

Instantly share code, notes, and snippets.

View ajaygt's full-sized avatar

Ajay G T ajaygt

View GitHub Profile
@ajaygt
ajaygt / sudoko.js
Created September 19, 2018 06:55
Sudoko Validator
var Sudoku = (function (){
var _rows, _cols, _grid;
// initialize the module with input data
init = function(data){
splitDataIntoColandGrid(data);
return this;
};
//r