shelbyd / fast_fives

A faster solution of finding sets of 5 words of length 5 that use 25/26 English alphabet characters.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fast fives

A faster implementation of finding sets of 5 words of length 5 that all contain different letters from a provided list of words. See https://www.youtube.com/watch?v=_-AfhLQfb6w for more info. The algorithms presented in the video appeared optimizable.

Results

Currently this takes about ~1.3 seconds to generate the "correct" 831 words output according to the linked video on my i9-12900K @ 3.2GHz, which is admittedly a little overkill.

Technique

This primarily achieves the performance it has by:

  1. Being written in Rust, a language that compiles to machine code
  2. Using multiple threads
  3. After choosing a word, only considering words that are lexicographically after that one, trusting another iteration would capture when that appears before
  4. Compare word validity using bitstrings and bit operations

There are likely more improvements to make. But another few orders of magnitude improvement over the existing solutions is sufficient for now. :)

  1. Prune fully-checked words from initial filtering - Not successful

Installation

Install Rust https://rustup.rs/.

Clone this repository.

Run:

cargo run --release

Options

If you'd like to provide an alternate word list, you can specify the input file as an argument to the program:

cargo run --release -- your_word_file.txt

The program expects that file to be a newline separated list of words. It will only consider 5 letter words.

About

A faster solution of finding sets of 5 words of length 5 that use 25/26 English alphabet characters.


Languages

Language:Rust 100.0%