Live data from Hacker News

Reverse engineering Wordle

reichel.dev

1–10 of 67 posts

Re: Reverse engineering Wordle

#2
A word of warning for anyone inspecting the Wordle source code: the answers for each day are stored in a list ordered by day. If you search for today's answer, the next word in the list will be tomorrow's answer, etc. Be careful not to ruin the fun by seeing tomorrow's answer in advance!

Re: Reverse engineering Wordle

#3
I figured that was possible; from the UX it was pretty clear it’s all client side.

What I would find cool is derivation of the best strategy at any time. Just like blackjack, there should be a “best” move at all times , and it would be cool to measure yourself against that

Re: Reverse engineering Wordle

#5
I guess I wasn't the only person who tried to reverse engineer wordle because they were stuck on the final try.

I thought I would do a programmatic soltion because that was the only win I will be able to get. I did find it interesting that they had all the 5 letter words in the frontend logic.

Re: Reverse engineering Wordle

#7
> It seems like many of the variables are given names that are not descriptive at all to make it a bit more difficult to read.

The code is just minimized for prod..

The article as written makes it sound like the developer(s) intentionally wrote their code cryptically, whereas minimization for deployment is fairly standard practice

Re: Reverse engineering Wordle

#10

I figured that was possible; from the UX it was pretty clear it’s all client side. What I would find cool is derivation of the best strategy at any time. Just like blackjack, there should be a “best” move at all times , and it would be cool to measure yourself against that

I think there’s been a few of those on hacker news. Let me dig one up
Post reply on HN