blob: c80f7ec3d02b8a1942e0c972b613576b6aa1ff71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Nissy - H48 solver POC</title>
<script type="module" src="./nissyapp.mjs"></script>
</head>
<body>
<input id="scrambleText" placeholder="Type the scramble here...">
<select id="solverSelector">
<option value="h48h0k4" selected="selected">h48 h=0 k=4 (59Mb)</option>
<option value="h48h3k2">h48 h=3 k=2 (283Mb)</option>
<option value="h48h7k2">h48 h=7 k=2 (3.6Gb)</option>
</select>
<button id="solveButton">Solve</button>
<p id="resultsLabel"></p>
<p id="results"></p>
</body>
</html>
|