wordle-trie-packing VS wordle

Compare wordle-trie-packing vs wordle and see what are their differences.

wordle-trie-packing

Wordle clones are everywhere, but who is thinking about the bandwidth? (by adamcw)

wordle

Finding optimal play in the game of wordle (by alex1770)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
wordle-trie-packing wordle
5 8
2 50
- -
4.7 5.3
about 2 years ago about 2 months ago
Python C++
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wordle-trie-packing

Posts with mentions or reviews of wordle-trie-packing. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-02-19.
  • Game Boy Wordle clone: How to compress 12972 five-letter words to 17871 bytes
    12 projects | news.ycombinator.com | 19 Feb 2022
    ```

    Doing this, and then doing the variable length encoding I got the file down to 13,181 bytes (it was 13,180 bytes, but I needed to add a 7 bit termination string so that you can properly decode the file after you write it to disk, otherwise when the file rounds to the nearest byte you have random 0s that get decoded).

    I'm sure with some twiddling of the alphabets some more you could save a few more bytes, but this does better than both Brotli on a ASCII trie and the Huffman Trie by almost 1KB (https://github.com/adamcw/wordle-trie-packing#all-words), so I'm very happy.

wordle

Posts with mentions or reviews of wordle. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-22.
  • What is your go to starting word? Mine is AISLE
    1 project | /r/wordle | 8 Jul 2023
  • Can you calculate the value of using the previous solutions list?
    1 project | /r/wordle | 10 May 2023
    Yes. I believe it's a combination between the small breakthroughs and the reduction of the 6 Solutions ( 2,315 -> 2,309) of course we are now back up to 2,312 with the 3 new ones added (3rd one is pending). SALET is down to 7894 (Default Mode) with the new additional guess options and six less Solutions to solve. But TARSE is 11 steps total steps better. Understandably, 11 steps is minuscule when it's. 7883 vs 7894. Link: https://github.com/alex1770/wordle/blob/main/results_easy_nyt20220830
  • Can anyone solve this?
    1 project | /r/wordle | 5 Apr 2023
    You do realize adieu is a shit starting word, right? TRUCK isn't very good, ranks 5,406th. But "adieu" is even worse at 7,396th. Source . There's a reason that players with "adieu" as their starting word have one of the worst averages in Wordle (rivaled only by AUDIO). It's because it's a terrible choice. I don't have the all-time stats in front of me, but take today for instance. Out of these 5 options, adieu players were last: LEAST = 3.9 average STARE = 4.0 avg SATER = 4.1 avg RAISE = 4.3 avg adieu = 4.7 avg
  • Best starting word question
    1 project | /r/wordle | 3 Mar 2023
    source
  • I discovered a trick to help solve it with mostly 3’s
    1 project | /r/wordle | 21 Jan 2023
    Nice, it's cool to find someone using a similar strategy :). I looked for CRATE SPOIL in Alex Selby's full list of pairs here: https://github.com/alex1770/wordle/blob/e298e35fbc044a8137da235a8940748770cefd2c/twowords-nyt20220316-best11099.txt It's around 300th and takes an average of ~0.04 more guesses on the original game (with optimal play) than PARSE CLINT, which is not bad at all. Such a small difference might be overshadowed by how well the pair fits with your playing style. But I encourage you to try it out! It's been doing well for me so far and maybe it'll spice up your game a bit.
  • I’ve realized that hard mode is actually harder.
    1 project | /r/wordle | 30 Mar 2022
    Source: Dr Alex Selby, https://github.com/alex1770/wordle/blob/main/results_hard_nyt20220316
  • Daily Wordle #277 - Wednesday, 23 Mar. 2022
    2 projects | /r/wordle | 22 Mar 2022
    ¹ Alex Selby’s wordle solver has starting words of CHOMP and THUMP. A starting word of RIDES is inadvisable as the minimum number of guesses in definitely more than 12. Link: https://github.com/alex1770/wordle
  • Game Boy Wordle clone: How to compress 12972 five-letter words to 17871 bytes
    12 projects | news.ycombinator.com | 19 Feb 2022
    Like y'all, I wanted to see how I could do. Of course, I didn't get all the way to tested code on a gameboy. But it does compress & decompress in Python.

    I took the central idea of encoding deltas (or actually delta less 1, since the delta is always at least one; I'll just say delta below), but did it on the full five letter word. The largest delta was still less than 2*18 but bigger than 2*17. (I'm not sure why the blog mentions 20 bits as the biggest delta; I used the dataset from https://github.com/alex1770/wordle/commit/62520406365ca58a1a...)

    I decided I wanted a variable length code in bits. Manually, I found the best break-points that I could:

        breaks = [16, 128, 512, 2**12, 2**18]

What are some alternatives?

When comparing wordle-trie-packing and wordle you can also consider the following projects:

wasmboy - Game Boy / Game Boy Color Emulator Library, 🎮written for WebAssembly using AssemblyScript. 🚀Demos built with Preact and Svelte. ⚛️

roadroller - Roadroller: Flattens Your JavaScript Demo

gb-wordyl - A word game for the Nintendo Game Boy / Color, Analogue Pocket, Mega Duck

ZLib - A massively spiffy yet delicately unobtrusive compression library.

wordler - find solution to wordle every day and create an issue for each day