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
110652adieu_v4Josep del Riohttps://github.com/joseprio/golfhorse
210654adieu_v3Josep del Riohttps://github.com/joseprio/golfhorse
310748adieu_v2Josep del Riohttps://github.com/joseprio/golfhorse
410800adieuJosep del Riohttps://github.com/joseprio/golfhorse
510837fablehttps://github.com/dwrensha/golf-horse-submissions
610982zymicluke_ghttps://www.luke-g.com/wordle-golf-horse/
712155SoME2023dwrensha+JGrabmanhttps://www.youtube.com/watch?v=JYN25TeM5kI
812852decisionTreesJGrabman
912946jumbolexicon2pokes
1012999jumbolexicon1pokes
1113388roadroller-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)
1215152astrolexicon2pokes
1316136astrolexicon1pokes
1417456asciideltasrmmh
1517977rle3Vorthttps://gist.github.com/Vort/ea5bd6b4fc855d752c4934e505ed60da
1617987basically-bzipdwrensha
1718938deltapostingsrmmhhttps://gist.github.com/rmmh/8a7f631277fc30ea85a04acbdb591ba7
1820553rle2Vorthttps://gist.github.com/Vort/d19e1dd5e1fbc8e894830e6eece6ec54
1921381ananadwrensha
2029154just_fancy_replacingKfftfufturhttps://gist.github.com/Kfftfuftur/d992d2edd5b1a7d9950c34a47805fd75
2129311iter3Logan Mhttps://github.com/Reinhardt-C/wordlegolf/
2230260rle1Vorthttps://gist.github.com/Vort/9bed6552b95b67efbc32cef2d108b8ea
2330603prefix_3andrry_armorhttps://gist.github.com/AndrryArmor/277f864a91b409af01d5bbcc56843c8c
2431099trieben
2539689prefix_2andrry_armorhttps://gist.github.com/AndrryArmor/db28432fcfc618fa5da3041c276fb6dd
2645082bwtixreusing an old solution
2745851better_concat_1MaxMattihttps://gist.github.com/MaxMatti/2bae8f863da38b5d3316ebbbdde0f8c6
2851969prefix_1andrry_armorhttps://gist.github.com/AndrryArmor/0ed7bb3c85a16b7dfc751b3f23d1dee5
2964802concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
3064814concat_wordsandrry_armorhttps://gist.github.com/AndrryArmor/b41fcf4b3a8585a211468e7f1f6f1d79
3164845simpleseb
3290644defaultixhttps://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.