-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
167 lines (131 loc) · 3.65 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
var arr = [[], [], [], [], [], [], [], [], []]
var temp = [[], [], [], [], [], [], [], [], []]
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
arr[i][j] = document.getElementById(i * 9 + j);
}
}
function initializeTemp(temp) {
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
temp[i][j] = false;
}
}
}
function setTemp(board, temp) {
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
if (board[i][j] != 0) {
temp[i][j] = true;
}
}
}
}
function setColor(temp) {
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
if (temp[i][j] == true) {
arr[i][j].style.color = "#DC3545";
}
}
}
}
function resetColor() {
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
arr[i][j].style.color = "green";
}
}
}
var board = [[], [], [], [], [], [], [], [], []]
let button = document.getElementById('generate-sudoku')
let solve = document.getElementById('solve')
console.log(arr)
function changeBoard(board) {
for (var i = 0; i < 9; i++) {
for (var j = 0; j < 9; j++) {
if (board[i][j] != 0) {
arr[i][j].innerText = board[i][j]
}
else
arr[i][j].innerText = ''
}
}
}
button.onclick = function () {
var xhrRequest = new XMLHttpRequest()
xhrRequest.onload = function () {
var response = JSON.parse(xhrRequest.response)
console.log(response)
initializeTemp(temp)
resetColor()
board = response.board
setTemp(board, temp)
setColor(temp)
changeBoard(board)
}
//using API to get the initial sudoku setup
xhrRequest.open('get', 'https://sugoku.herokuapp.com/board?difficulty=easy')
//we can change the difficulty of the puzzle the allowed values of difficulty are easy, medium, hard and random
xhrRequest.send()
}
//to check if it is possible to put the no. in that index
function isPossible(board, sr, sc, val) {
//checking for row
for (var row = 0; row < 9; row++) {
if (board[row][sc] == val) {
return false;
}
}
//checking for column
for (var col = 0; col < 9; col++) {
if (board[sr][col] == val) {
return false;
}
}
//formula to get the starting index of row and column of the subgrid
var r = sr - sr % 3;
var c = sc - sc % 3;
//checking for subgrid
for (var cr = r; cr < r + 3; cr++) {
for (var cc = c; cc < c + 3; cc++) {
if (board[cr][cc] == val) {
return false;
}
}
}
//if possible then return true
return true;
}
function solveSudokuHelper(board, sr, sc) {
if (sr == 9) {
changeBoard(board);
return;
}
//if we reach the end of column then go to the starting column innext row
if (sc == 9) {
solveSudokuHelper(board, sr + 1, 0)
return;
}
//if the index is already filled ,we skip it
if (board[sr][sc] != 0) {
solveSudokuHelper(board, sr, sc + 1);
return;
}
//if index is not filled we try to fill a value
for (var i = 1; i <= 9; i++) {
//check if it is possible to fill a value
if (isPossible(board, sr, sc, i)) {
board[sr][sc] = i;
//go to next index after filling
solveSudokuHelper(board, sr, sc + 1);
board[sr][sc] = 0;
}
}
}
function solveSudoku(board) {
solveSudokuHelper(board, 0, 0)
}
solve.onclick = function () {
solveSudoku(board)
}