Live data from Hacker News

Guess the daily Wordle in one try using the tweet distribution

kaggle.com

41–50 of 122 posts

Re: Guess the daily Wordle in one try using the tweet distribution

#41
> Note that all of these 243 possibilities aren't valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed.

Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM.

Edit: As pointed out by two commenters, the actual implementation contradicts the following claim in the post:

> “Maybe” - the letter is in the answer but in a different position

If the correct answer is TWEED and you gess TWEET, you will still get YYYYN, because the actual implementation uses a different definition of “Maybe” than what is written in the post.

Re: Guess the daily Wordle in one try using the tweet distribution

#42

> Note that all of these 243 possibilities aren't valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed. Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM. Edit: As pointed out by two commenters, the actual implementation contradicts the following claim…

I believe in the actual implementation it's correct. You can confirm a letter is not doubled, when one of the two letters in your guess is gray.

Re: Guess the daily Wordle in one try using the tweet distribution

#43

> Note that all of these 243 possibilities aren't valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed. Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM. Edit: As pointed out by two commenters, the actual implementation contradicts the following claim…

> if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM

No, this would give YYYYN

Re: Guess the daily Wordle in one try using the tweet distribution

#44

> Note that all of these 243 possibilities aren't valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed. Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM. Edit: As pointed out by two commenters, the actual implementation contradicts the following claim…

I believe in the actual implementation it's correct. You can confirm a letter is not doubled, when one of the two letters in your guess is gray.

I only played it occasionally and haven’t encountered doubled letters, so I don’t know what the actual response would be. Maybe you’re right.

Re: Guess the daily Wordle in one try using the tweet distribution

#45
post #5

You can guess it in one try by carefully reading the code. There is no server that knows the correct answer. The client already knows, based on the date. That is why you can only play once per day.

Thanks, Captain Kirk. You get a commendation for knowing how to 'View Source'.

Re: Guess the daily Wordle in one try using the tweet distribution

#46

> Note that all of these 243 possibilities aren't valid in practice. For example YYYYM will never be seen because if the first four letters are correctly placed and the fifth is also in the word, it will be correctly placed. Not true. For example if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM. Edit: As pointed out by two commenters, the actual implementation contradicts the following claim…

> if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM No, this would give YYYYN

If Yellow/“Maybe” really means “the letter is in the answer but in a different position”, then the final T satisfies this definition.

Another commenter points out the actual implementation may deviate from this definition though.

Re: Guess the daily Wordle in one try using the tweet distribution

#47

Earlier quoted context omitted.

> if the correct answer is TWEED and you guess TWEET, then you’ll get YYYYM No, this would give YYYYN

If Yellow/“Maybe” really means “the letter is in the answer but in a different position”, then the final T satisfies this definition. Another commenter points out the actual implementation may deviate from this definition though.

Try TWEET in today's Wordle and you'll see what I mean

Re: Guess the daily Wordle in one try using the tweet distribution

#49
post #5

You can guess it in one try by carefully reading the code. There is no server that knows the correct answer. The client already knows, based on the date. That is why you can only play once per day.

As already explained by carefully reading the opening of the post.
Post reply on HN