-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (22 loc) · 1.08 KB
/
index.html
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
<html>
<head>
<title>Sudoku</title>
<link rel="stylesheet" href="sudoku.css">
<script src="sudoku.js"></script>
</head>
<body>
<h1>Sudoku Solver</h1>
<p>Apart from given sample puzzles, you can create your own <br> puzzle by typing inputs and get answer by using solve button</p>
<!-- 9x9 board -->
<div id="board"></div>
<br>
<div id="digits">
</div>
<input type="button" id="solveButton" value="Solve" onclick="loader()" class="buttons" >
<input type="button" id="resetButton" value="Reset" class="buttons" onclick="reset()">
<input type="button" id="samp1" value="Sample1" class="buttons" onclick="Sample1()">
<input type="button" id="samp2" value="Sample2" class="buttons" onclick="Sample2()">
<input type="button" id="samp3" value="Sample3" class="buttons" onclick="Sample3()">
<input type="button" id="check" value="Check" class="buttons" onmousedown="check()" onmouseup="decheck()">
</body>
</html>