-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolverNxN.html
More file actions
33 lines (33 loc) · 955 Bytes
/
solverNxN.html
File metadata and controls
33 lines (33 loc) · 955 Bytes
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>
<script type="text/javascript" src="solver2x2.js">
</script>
<script type="text/javascript" src="ctimer.js">
</script>
<script type="text/javascript">
function genScrambles(){
document.getElementById("s2").innerHTML = genScrambleNxN(2, 15);
document.getElementById("s3").innerHTML = genScrambleNxN(3, 25);
document.getElementById("s4").innerHTML = genScrambleNxN(4, 40);
document.getElementById("s5").innerHTML = genScrambleNxN(5, 60);
document.getElementById("s6").innerHTML = genScrambleNxN(6, 80);
document.getElementById("s7").innerHTML = genScrambleNxN(7, 100);
}
</script>
</head>
<body onload="initConstants();genScrambles()" onclick="genScrambles()">
<span id="s2"></span>
<hr/>
<span id="s3"></span>
<hr/>
<span id="s4"></span>
<hr/>
<span id="s5"></span>
<hr/>
<span id="s6"></span>
<hr/>
<span id="s7"></span>
<!--hr/>
<div id="deb"></div-->
</body>
</html>