Public
Like
thinkalittlelonger
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data β all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v81View latest version
In the first version of the game, there will be 7 rounds
The valid word list I use is wordnik, and it is hosted on github at the following url: https://raw.githubusercontent.com/wordnik/wordlist/main/wordlist-20210729.txt
it also exists in my sqlite database in the table judgments which has a column "word"
I have duckdb queries that return solutions for each round. For example. This query returns all words that start with p and end with p:
from judgments
select word, length(word) as n_letters,
where
-- starts and ends with p
word like 'p%p'
order by n_letters desc
some of the results of the
create a new table:
yourbiggestword
- id
- slug - string representing round_name 50 character max