-
Notifications
You must be signed in to change notification settings - Fork 16
/
test-deleted-clues-solved.html
82 lines (78 loc) · 1.93 KB
/
test-deleted-clues-solved.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.58"/>
<script src="exolve-m.js?v1.58"></script>
<title>Test-4D-with-deletions</title>
</head>
<body>
<script>
function addBottomLeftTurn(puz, row, col) {
const turn = document.createElementNS('http://www.w3.org/2000/svg', 'text');
turn.setAttributeNS(null, 'x', puz.cellLeftPos(col, puz.NUMBER_START_X));
turn.setAttributeNS(null, 'y', puz.cellTopPos(row, puz.squareDim - 3));
turn.setAttributeNS(null, 'class', 'xlv-cell-num');
turn.style.fill = puz.colorScheme['light-label']
turn.style.fontSize = puz.numberSize + 'px'
const num = document.createTextNode('↳')
turn.appendChild(num);
puz.svg.appendChild(turn)
}
function customizeExolve(puz) {
addBottomLeftTurn(puz, 2, 0)
}
createExolve(`
======REPLACE WITH YOUR PUZZLE BELOW======
exolve-begin
exolve-id: test-4d-with-deletions
exolve-title: Test-4d-with-deletions
exolve-setter: Gussalufz
exolve-copyright: 2020 Viresh Ratnakar
exolve-width: 9
exolve-height: 6
exolve-option: allow-digits
exolve-grid:
A B C|D E F|G H I
1 . 2|. 3 .|4 . 5
J_K_L+M_N_O+P_Q_R_
6 . 7|. 8 .|9 . 0
A B C|D E F|G H I
1 . 2|. 3 .|4 . 5
exolve-nodir: Hopping Across
#c6 #f6 #i6 [2] Cfi (3)
#a4 #d4 #g4 [7] Jmp (3)
--- Hopping Down
#d6 #d4 #d2 [3] Dmd (3)
--- Turners
#a6 #a5 #a4 #b4 #c4 [1] A1JKL (5)
#g6 #h6 #i6 #i5 #i4 [5] ghi5r (5)
#a4 #b4 #c4 #d4 #e4 #f4 #g4 #h4 #i4 #i3 #i2 #i1 [7] jklmnopqr0i5 (12)
exolve-across:
1 Abc (3)
3 Def (3)
5 *
7 *
8 *
9 *
15 Abc (3)
16 Def (3)
17 Ghi (3)
exolve-down:
1*
2 C2L (3)
4 E3n (3)
5 G4p (3)
6 I5r (3)
10 6a1 (3)
11 7c2 (3)
12 8e3 (3)
13 9g4
14 *
exolve-end
======REPLACE WITH YOUR PUZZLE ABOVE======
`);
</script>
</body>
</html>