-
Notifications
You must be signed in to change notification settings - Fork 0
/
checker.js
368 lines (333 loc) · 12.7 KB
/
checker.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
function verify() {
document.getElementById("problems").innerHTML = "";
document.getElementById("success").setAttribute("style", "display: none;");
document.getElementById("failure").setAttribute("style", "display: none;");
if (checkFill()) {
checkRows();
checkCols();
checkBoxes();
if (document.getElementById("failure").getAttribute("style") == "display: none;") {
document.getElementById("success").setAttribute("style", "display: block;");
}
}
}
function checkFill() {
const valid = [1, 2, 3, 4, 5, 6, 7, 8, 9];
var badCells = [];
for (let r = 0; r < 9; r++) {
for (let c = 0; c < 9; c++) {
if (valid.includes(cellValue(r, c)) == false) {
badCells.push("(" + (r + 1) + "," + (c + 1) + ")");
}
}
}
if (badCells.length == 0) {
return true;
}
else {
var error = "Invalid Entries:";
badCells.forEach(cell => {
error += " " + cell;
});
document.getElementById("problems").innerHTML = error;
document.getElementById("failure").setAttribute("style", "display: block;");
return false;
}
}
function checkRow(r) {
var counter = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0 }
for (let c = 0; c < 9; c++) {
counter[cellValue(r, c)]++;
}
var missing = [];
var repeat = [];
var extra = [];
for (let v = 1; v < 10; v++) {
if (counter[v] == 0) {
missing.push(v);
}
if (counter[v] == 2) {
repeat.push(v);
}
if (counter[v] > 2) {
extra.push(v);
}
}
if (extra.length > 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Row " + (r + 1) + " has more than 2 instances of:";
extra.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Row " + (r + 1) + " has too many missing values:";
missing.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Row " + (r + 1) + " has too many repeat values:";
repeat.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Row " + (r + 1) + " has no missing or repeat values</p>";
document.getElementById("problems").innerHTML += error;
}
return { "missing": missing, "repeat": repeat };
}
function checkRows() {
// Step 1: Check where each value is missing/repeated
var missing = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
var repeat = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
for (let r = 0; r < 9; r++) {
var rowData = checkRow(r);
rowData["missing"].forEach(v => {
missing[v].push(r);
});
rowData["repeat"].forEach(v => {
repeat[v].push(r);
});
}
// Step 2: Validate each value mssing/repeated once
for (let v = 1; v < 10; v++) {
if (missing[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is present in every row</p>";
document.getElementById("problems").innerHTML += error;
}
if (missing[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is missing from more than one row:";
missing[v].forEach(r => {
error += " " + (r + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is not repeated in any row</p>";
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is repeated in more than one row:";
repeat[v].forEach(r => {
error += " " + (r + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
}
}
function checkCol(c) {
var counter = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0 }
for (let r = 0; r < 9; r++) {
counter[cellValue(r, c)]++;
}
var missing = [];
var repeat = [];
var extra = [];
for (let v = 1; v < 10; v++) {
if (counter[v] == 0) {
missing.push(v);
}
if (counter[v] == 2) {
repeat.push(v);
}
if (counter[v] > 2) {
extra.push(v);
}
}
if (extra.length > 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Column " + (c + 1) + " has more than 2 instances of:";
extra.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Column " + (c + 1) + " has too many missing values:";
missing.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Column " + (c + 1) + " has too many repeat values:";
repeat.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Column " + (c + 1) + " has no missing or repeat values</p>";
document.getElementById("problems").innerHTML += error;
}
return { "missing": missing, "repeat": repeat };
}
function checkCols() {
// Step 1: Check where each value is missing/repeated
var missing = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
var repeat = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
for (let c = 0; c < 9; c++) {
var colData = checkCol(c);
colData["missing"].forEach(v => {
missing[v].push(c);
});
colData["repeat"].forEach(v => {
repeat[v].push(c);
});
}
// Step 2: Validate each value mssing/repeated once
for (let v = 1; v < 10; v++) {
if (missing[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is present in every column</p>";
document.getElementById("problems").innerHTML += error;
}
if (missing[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is missing from more than one column:";
missing[v].forEach(c => {
error += " " + (c + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is not repeated in any column</p>";
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is repeated in more than one column:";
repeat[v].forEach(c => {
error += " " + (c + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
}
}
function checkBox(b) {
var counter = { 1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0, 7: 0, 8: 0, 9: 0 }
for (let k = 0; k < 9; k++) {
counter[cellValue(3*~~(b/3) + ~~(k/3), 3*(b%3) + (k%3))]++;
}
var missing = [];
var repeat = [];
var extra = [];
for (let v = 1; v < 10; v++) {
if (counter[v] == 0) {
missing.push(v);
}
if (counter[v] == 2) {
repeat.push(v);
}
if (counter[v] > 2) {
extra.push(v);
}
}
if (extra.length > 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Box " + (b + 1) + " has more than 2 instances of:";
extra.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Box " + (b + 1) + " has too many missing values:";
missing.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat.length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Box " + (b + 1) + " has too many repeat values:";
repeat.forEach(val => {
error += " " + val;
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (missing.length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Box " + (b + 1) + " has no missing or repeat values</p>";
document.getElementById("problems").innerHTML += error;
}
return { "missing": missing, "repeat": repeat };
}
function checkBoxes() {
// Step 1: Check where each value is missing/repeated
var missing = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
var repeat = { 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: [] };
for (let b = 0; b < 9; b++) {
var boxData = checkBox(b);
boxData["missing"].forEach(v => {
missing[v].push(b);
});
boxData["repeat"].forEach(v => {
repeat[v].push(b);
});
}
// Step 2: Validate each value mssing/repeated once
for (let v = 1; v < 10; v++) {
if (missing[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is present in every box</p>";
document.getElementById("problems").innerHTML += error;
}
if (missing[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is missing from more than one box:";
missing[v].forEach(b => {
error += " " + (b + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length == 0) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is not repeated in any box</p>";
document.getElementById("problems").innerHTML += error;
}
if (repeat[v].length > 1) {
document.getElementById("failure").setAttribute("style", "display: block;");
var error = "<p>Value " + (v) + " is repeated in more than one box:";
repeat[v].forEach(b => {
error += " " + (b + 1)
});
error += "</p>"
document.getElementById("problems").innerHTML += error;
}
}
}
function cellValue(row, col) {
return parseInt(document.getElementById("cell-" + (row * 9 + col)).value, 10);
}