oneline []
Find the final word by solving clues for word fragments.
{
startTime = Date.now()
timerInterval = setInterval(() => {
elapsedSeconds++
}, 1000)
}"
>
play
about
Temporary list of every puzzle:
{
if (evt.shiftKey) {
focusIdx = (focusIdx + word.length - 1) % word.length
} else {
focusIdx = (focusIdx + 1) % word.length
}
}"
@keydown.window.arrow-left.prevent="focusIdx = (focusIdx + word.length - 1) % word.length"
@keydown.window.arrow-right.prevent="focusIdx = (focusIdx + 1) % word.length"
@keydown.window.backspace="backspace"
@keydown.window="evt => {
if (evt.key.match(/^[a-z]$/i) && !evt.ctrlKey && !evt.altKey && !evt.metaKey) {
updateGuess(evt.key)
}
}"
>