Live data from Hacker News

Guess the daily Wordle in one try using the tweet distribution

kaggle.com

101–110 of 122 posts

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

#101
post #71
post #69

Earlier quoted context omitted.

I always lead with STOAE so people don't have issues guessing my first one at least. I also tend to follow with UNLID if STOAE has zero or one hits.

ARTSY MODEL CHUNK here. It's not optimal, but it is pleasing to me in an aesthetic sense.

SALTY URINE

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

#102
post #17

This is a really cool approach, definitely did not think of trying this! If you'd prefer to play without the crowdsourced data, I spent a couple hours on the following dictionary search algo yesterday which can typically solve puzzles in 3-4 guesses: https://github.com/rgkimball/wordlebot

nice! i did similar, but used character frequencies in the remaining word sets to rank: https://github.com/keredson/wordle_solver

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

#103

What is Wordle?

[dead]

I had seen wordle on HN for weeks, downloaded the android app and was totally underwhelmed. I've been baffled why all the fuss until seeing this and realizing it's totally unrelated, thank you!

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

#104
post #96
post #69

Earlier quoted context omitted.

I always lead with STOAE so people don't have issues guessing my first one at least. I also tend to follow with UNLID if STOAE has zero or one hits.

AROSE for me. 5 of the top 6 most-frequent letters. But hard mode, so next depends.

Yep—AROSE and then CLINT for me.

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

#105
post #93

Earlier quoted context omitted.

This uses ~2-3k tweets per day for most days, which seems to be more than enough. According to https://twitter.com/WordleStats/status/1486021209015963649 there's about 250k daily tweets per Wordle right now, so this is about a 1% sample coming from whatever the Twitter search API returned when I ran that query. The simulated distributions it's comparing to are based on 1000 runs per 5-letter word. Anecdotally, 250 wa…

This is a cool project, but I wanted to tell you that your evaluate_guess function is wrong. evaluate_guess(answer="crest", guess="erase") "MYNYM" Many people misunderstand this but it's not how the rules actually work. Correct here would be MYNYN, because there is only one E in the correct answer. There must be a 1-1 correspondence between any 'M' letter in the guess and the letter in the answer. This is similar to…

Right, I wonder how many of the “fake/invalid” tweets that OP observed are actually this bug in the analysis code.

EDIT: actually it looks like it’s correct - evaluate_guess_char() only returns “M” if there’s an instance of the guess letter that’s not accounted for.

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

#108
post #60

I am trying so hard to not know what Wordle is or how to play. Now it is showing up on Hacker News? Damn. I’ve not had this much trouble since I avoided Sudoku.

> Now it is showing up on Hacker News?

Only every day for the last two months

https://hn.algolia.com/?dateRange=pastYear&page=0&prefix=fal...

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

#109
post #100

Or take all the fun away and just get it through browser console ¯\_(ツ)_/¯ JSON.parse(localStorage.gameState).solution

Or you can look at the source and see the list of words. They're sequential, so you know every future word. The "Wordle 222" is actually just the 222 index into the array.
Post reply on HN