update
This commit is contained in:
parent
8521834c15
commit
c38f48b727
4 changed files with 185 additions and 0 deletions
25
JavaScript Solution/index.html
Normal file
25
JavaScript Solution/index.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sudoku</title>
|
||||
<link rel="stylesheet" href="./styles.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="sudoku-container">
|
||||
<table id="sudoku-board">
|
||||
<!-- You can dynamically generate the sudoku board using JavaScript -->
|
||||
</table>
|
||||
<button class="validButton" onclick="isValidSudoku(getBoardFromInputs())">IsValid?</button>
|
||||
<p id="result">Result: </p>
|
||||
</div>
|
||||
|
||||
|
||||
<script src="./script.js"></script>
|
||||
<script src="./yourScript.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue