[Community Puzzle] Wordle

Thank you all for being patient. I have updated the validation process with a new set of 9935 words, each of length 6 letters. The statement and I/O protocol have also been revised to reflect these changes.
For those who have already submitted your code, I kindly request that you update your code in accordance with the new I/O protocol and validation process. I apologize for any inconvenience this may cause and appreciate your cooperation and understanding. Thank you.

5 Likes

Interesting news. Is there a link to a dictionary for offline testing? It would be more convenient than getting it from the debug output.

The word set used in the game can be found here: english-words/6letters.txt at master Ā· tanvir362/english-words Ā· GitHub

3 Likes

Thank you.

1 Like

I believe that such a change should not happend.
This is a different puzzle now and could go as Wordle 2.

1 Like

The fact is the previous Wordle optim was flawed and had to be removed anyway.

1 Like

Hello everyone!

Can anyone tell me that where does the total guessing number comes from?
Our submitted algorithms are tested with another input that is different from the test cases of the game?

Thank you for your answer!
Have a nice day! :slightly_smiling_face:

P.S. The game is awesome!

Certainly! In order to prevent hardcoded answers, a series of tests are conducted after the submission against a different set of test cases, which are known as validation test cases. The number of guesses made for each validation test case will be added to your total guess count.

Thatā€™s Cool!

Thank you!

The list is there :slight_smile: found it right away.

Hi,
is there a way to understand why some test fail? All local tests succeed, but when submitting a couple of the m fail, and I was wondering wether is it due to calculation time or too many answers ?

I bet itā€™s the word set initial input, what I think happens is that some internal timers from the validator get aligned ā€œjust rightā€ (very rarely) so that the initial 1000ms almost donā€™t count.
From what I measured, the word set input takes ~5.5s and my initializations (before printing a guess) take 0.0004-0.001s. Maybe, at some point the input takes 4.9999s, the validator gives you time until the next rounded second (5) and the validator fails with anything (or they do any modulo operation like current_time%1000 to get the time limit, which could align in other ways). Maybe it can also fail the same way in 2nd+ turnsā€¦

And this is why I think now it happens before the first turnā€¦
Captura

(Nevermind, after more review it should be the 2nd turn where there are more calculations in my code, it was just a very improbable result on top of that)

question to the current top gamers @dbdr @cedricdd here : what is the trick for ~3 guess on average per validator ( 155 points / 50 validators ) . my best is 192 , so around ~4 on average

from what i have discovered , by narrowing down vocabulary on the 1st and 2nd turn with the sets of most popular unique letters , i am left with 40~90 possible guesses . next turns , i use heuristic based on linear combination of arbitrary scores for each letter constraint . i have a hard time figuring out how to guess the word on turn 3 within so many possible guesses

my current ideas are :

  • maybe there is some more advanced way to select letters on the first turns , which shrink the vocabulary to very small number of choices . how much do you guys manage to shrink the set of possible guesses on the first turns ?
  • or maybe , as the author is human and didnā€™t select answer words purely randomly , use a heuristic based on general real-world popularity before making a guess . so also question to @TAN7IR , did you pick the answer words by yourself , or randomly ? :slight_smile: because in the set , there are some iā€™ve never seen before

Hi,

You are given the list of 9935 possible words so you can spend as long as you want locally to find the best first guess/second guesses in order to maximise the number of words that can be found for sure in 3 guesses.

Once you have done that it all comes down to luck, the average score Iā€™m getting is ~170, I got lucky with the 155 and the 50 words that were selected.

2 Likes

Hi,

I collected all the words from different source over the internet and could not validate each one individually. Instead, I ensure they have the correct length and arenā€™t duplicates.

In the IDE, the solution word is fixed for each test case, but for the validation test cases, answer words are randomly chosen from the word set.