|
|
|
|
|
by eat_veggies
1574 days ago
|
|
the most interesting part of this imo is the heuristic it uses to find the most likely word: # Greatly penalize words that have multiple of the same black letters
# Greatly penalize words that have the same black letters as any seen word
# Greatly penalize words that have the same yellow letter/index pair as any seen word
# Reward words that have yellow letters that match yellow letters in seen words, but in different positions
# Reward words that have yellow letters that match green letters in seen words
# Penalize words that have yellow letters that don't appear in seen words
# Penalize words that have green letters that don't appear in seen words
# Rewards words based on commonality
# Reward/penalize words based on line indexes and common letters
I built something similar to this that just lists all the possible words, and is nowhere near as smart -- but it lets you draw pretty pictures! https://jse.li/wordle-reverse/ |
|
I like your project, very creative!