wordle: The Wordle Wordlist

These are the five-letter words used in the word-guessing game Wordle, as included in two large arrays in the game's source code.

Download the wordlist.

Leaderboard

rankbytesentryauthorURL
110982zymicluke_ghttps://www.luke-g.com/wordle-golf-horse/
212155SoME2023dwrensha+JGrabmanhttps://www.youtube.com/watch?v=JYN25TeM5kI
312852decisionTreesJGrabman
412946jumbolexicon2pokes
512999jumbolexicon1pokes
613388roadroller-v1lifthrasiirnpx roadroller@2.1.0 -t text -a console wordle.txt -o wordle.js -M1024 -Zlr1250 -Zmc24 -Zmd14 -S0,1,2,3,7,21,25,36,48,50,81,105,113,166,227,267,275,357,363,421 -D (uses a slightly modified version of Roadroller to use 7-bit alphabets and run RegPack to the compressor)
715152astrolexicon2pokes
816136astrolexicon1pokes
917456asciideltasrmmh
1017977rle3Vorthttps://gist.github.com/Vort/ea5bd6b4fc855d752c4934e505ed60da
1117987basically-bzipdwrensha
1218938deltapostingsrmmhhttps://gist.github.com/rmmh/8a7f631277fc30ea85a04acbdb591ba7
1320553rle2Vorthttps://gist.github.com/Vort/d19e1dd5e1fbc8e894830e6eece6ec54
1421381ananadwrensha
1529154just_fancy_replacingKfftfufturhttps://gist.github.com/Kfftfuftur/d992d2edd5b1a7d9950c34a47805fd75
1629311iter3Logan Mhttps://github.com/Reinhardt-C/wordlegolf/
1730260rle1Vorthttps://gist.github.com/Vort/9bed6552b95b67efbc32cef2d108b8ea
1830603prefix_3andrry_armorhttps://gist.github.com/AndrryArmor/277f864a91b409af01d5bbcc56843c8c
1939689prefix_2andrry_armorhttps://gist.github.com/AndrryArmor/db28432fcfc618fa5da3041c276fb6dd
2045082bwtixreusing an old solution
2145851better_concat_1MaxMattihttps://gist.github.com/MaxMatti/2bae8f863da38b5d3316ebbbdde0f8c6
2251969prefix_1andrry_armorhttps://gist.github.com/AndrryArmor/0ed7bb3c85a16b7dfc751b3f23d1dee5
2364802concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
2464814concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
2564845simpleseb
2690644defaultixhttps://github.com/ixchow/gh-default-solution

Submit A New Program

You may submit your program to the leaderboard for wordle by using the form below. Programs must be shorter than the default solution (in this case, 90644 bytes). Program names should pass /[A-Za-z0-9_.-]{1,20}/.test() in order to facilitate compact URLs. (Note, also, that programs don't have access to their own names in the testing environment, so stop scheming.)

Submitted files are not made available for download, so please include a URL (e.g., for a git repository) if you would like to share the source of your program.

Programs are tested in batches; generally daily. You will be sent to a URL upon submitting your program that will allow you to check testing progress. Hang on to this URL! Only tested, correct programs will appear on the leaderboard.

Correctness: Programs should output (via console.log) each word in the target wordlist, on a line by itself, exactly once. However, these words may be output in any order or capitalization. The program should require no more than two gigabytes of memory and 100 seconds of runtime.

Please check your code before submitting it. The testing code is available, as is an easier-to-use simple tester.