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
110837fablehttps://github.com/dwrensha/golf-horse-submissions
210982zymicluke_ghttps://www.luke-g.com/wordle-golf-horse/
312155SoME2023dwrensha+JGrabmanhttps://www.youtube.com/watch?v=JYN25TeM5kI
412852decisionTreesJGrabman
512946jumbolexicon2pokes
612999jumbolexicon1pokes
713388roadroller-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)
815152astrolexicon2pokes
916136astrolexicon1pokes
1017456asciideltasrmmh
1117977rle3Vorthttps://gist.github.com/Vort/ea5bd6b4fc855d752c4934e505ed60da
1217987basically-bzipdwrensha
1318938deltapostingsrmmhhttps://gist.github.com/rmmh/8a7f631277fc30ea85a04acbdb591ba7
1420553rle2Vorthttps://gist.github.com/Vort/d19e1dd5e1fbc8e894830e6eece6ec54
1521381ananadwrensha
1629154just_fancy_replacingKfftfufturhttps://gist.github.com/Kfftfuftur/d992d2edd5b1a7d9950c34a47805fd75
1729311iter3Logan Mhttps://github.com/Reinhardt-C/wordlegolf/
1830260rle1Vorthttps://gist.github.com/Vort/9bed6552b95b67efbc32cef2d108b8ea
1930603prefix_3andrry_armorhttps://gist.github.com/AndrryArmor/277f864a91b409af01d5bbcc56843c8c
2031099trieben
2139689prefix_2andrry_armorhttps://gist.github.com/AndrryArmor/db28432fcfc618fa5da3041c276fb6dd
2245082bwtixreusing an old solution
2345851better_concat_1MaxMattihttps://gist.github.com/MaxMatti/2bae8f863da38b5d3316ebbbdde0f8c6
2451969prefix_1andrry_armorhttps://gist.github.com/AndrryArmor/0ed7bb3c85a16b7dfc751b3f23d1dee5
2564802concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
2664814concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
2764845simpleseb
2890644defaultixhttps://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.