Anyone tried Wordle?
Anyone tried Wordle?
(OP)
There seems to be a bit of a craze at the moment for Wordle. Has anyone here tried it yet? Here is the link.
It's very simple. You just have to guess a five-letter word, in a maximum of six attempts. After each attempt, it tells you which letters in your guess also appear in the target word, and which of those also match their position in the target word.
As far as I know, the game can only be played in a browser - there is no app for it (and no plans to create one, apparently). There is just one puzzle per day, and everyone who plays it that day sees the same puzzle.
Give it a try if you haven't already done so. And let us know what you think.
Mike
It's very simple. You just have to guess a five-letter word, in a maximum of six attempts. After each attempt, it tells you which letters in your guess also appear in the target word, and which of those also match their position in the target word.
As far as I know, the game can only be played in a browser - there is no app for it (and no plans to create one, apparently). There is just one puzzle per day, and everyone who plays it that day sees the same puzzle.
Give it a try if you haven't already done so. And let us know what you think.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
I wonder how it become such a craze, it's perhaps a nice little motivation of the day, if you get it right with few tries.
I also see a "flaw": It switches once per day by your local clock. So you could easily cheat by setting time to the next day, also using a secondary browser for each first encounter and then solve it in your main browser with the time rest to normal by knowing the solution from your first try. That makes it a bit of a bummer to me. If you cheat that way you mainly cheat on yourself only, but if you see someone guessing every word in only two or three tries, I'd question them playing honestly.
I see no app, too. But the on screen keyboard can be used on any smartphone browser too, So that could contribute to the popularity, so many are in the internet on their phone or tablet only. Developers seem to be the last species of heavy desktop users.
Chriss
RE: Anyone tried Wordle?
https://www.dictionary.com/e/word-finder/unscrambl...
Then I got it on the fifth attempt.
RE: Anyone tried Wordle?
1. one letter right but out of place
2. two letters right but out of place
3, two letters right and in the right place
4. three letters right and in the right place
5. solved
My guess is that this game is solvable in the sense that there is likely to be an algorithm which will always produce the correct solution within the allowed six guesses. If so, I wonder how many guesses would be required by an optimal algorithm. Maybe five?
RE: Anyone tried Wordle?
You can surely build up a tree and choose good guess words with many of the most common letters or combinations.
This is in a sense simpler than the original super mind, even though there are more letters than colors. IIRC the English language has an entropy/information content of slightly more than 1 bit per letter.
That doesn't mean there are only 32 five letter words, though. So you can't apply this as directly as it sounnds.But surely starting with a word that has th, e, i, s, p, r, n, perhaps y or x, too, is a good strategy.
And then there are many sites like mikrom showed, you can simply google a sentence like "words beginning with,... ending with..., containing x,y,z and google will give you results if not directly than to sites that allow such searches. Or simply google "scrabble" of course.
But that becomes an interesting task for programmers. Try to create a well guessing AI, doesn't need to use an AI engine, there can be simple filtering of possible words and usage of letter frequencies that's sufficient to have an effective solver.
Chriss
RE: Anyone tried Wordle?
Solving Wordle clearly requires skill, particularly in deciding which words to try, which in turn requires a good knowledge of English vocabulary. The first time I played it, it took me five guesses and a considerable amount of time. Now, I generally manage to solve it quite quickly in three guesses. You definitely get better the more you play it.
There are plenty of tools available to help you decide which words to try. Mikrom mentioned Dictionary.com, which is a useful site in its own right. I often use an Android app called Crossword Solver King to help with solving crossword clues (and compiling crosswords). But for Wordle, I think they take the fun out of playing.
That said, you might consider creating your own Wordle program in your favourite programming language - perhaps as a Windows desktop program or an Android or iOS app. I might do it in Visual FoxPro, perhaps using the word list that I downloaded for my erstwhile Trackword program. This might be as a useful mental exercise (but only if and when I finally finish my Killer Sudoku program).
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
Following Karluk's breakdown:
1. one letter right and in the right place
2. one letter right and in the right place, one letter right and in the wrong place
3, three letters right and in the right place
4. Solved
Like Chris Miller, I wonder how it has become such a craze.
RE: Anyone tried Wordle?
Possibly because it's very simple: no complicated rules to learn or strategy to master, and doesn't require too much attention. Or possibly because you can only play it once per day, so there is less chance of getting bored with it.
According to BBC News, the game "amassed a following of 300,000 people in three months". (But it's not clear what they mean by "following".)
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
RE: Anyone tried Wordle?
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
Doh. This is not for me. Although I mostly know the word of the day, I would need to know a huge load of other words too just to make my guesses.
So I wrote a Ruby script to guess using english3.txt. ( This complicated the things abit as the site rejects some of those words. )
Spoiler (wordle.rb output)
Maybe should sacrifice the 2nd and 3rd guesses trying clearly wrong words that does not repeat any of the already discovered present letters. That way would acquire more information, ultimately allowing to make fewer guesses for the actual word.
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
It helps a lot if you split any 5 letter words in the dictionary into five single letter fields and therefore can easily filter matches in the exact position, but also in any position. I have not worked with ruby. I know the hype about ruby on rails, but then it went to mainly Japanese users. Python became my choice of the newer languages. But my tool of choice here would be SQL with l1...l5 char(1) fields indexed, you can query words in a blaze.
I haven't thought of wasting the first 2 or 3 tries to get more letters, but here we go. There are a lot of words that cover the 5 most often letters. Then it's perhaps nice to know whether a th is used, an x or y also is more often, but in the end the vowels are most important. So words with 2 or 3 vowels are nice. Then n,p,r,s,t, of course. Plus, you can also eliminate th if there is no t or no h. A test word with either t or h is good enough, a word without h is more likely, Words with t could still be without h. So perhaps start with something like "shear". If h is not present you eliminate all words with th or ch, too.
I'd also not start with the same word every day, even though the game does fix a word of the day for all users and thus won't adjust to your guessing profile only, I'd not let the game developer try to avoid the most often used first guess, to which I would contribute when always using the same guess.
Chriss
RE: Anyone tried Wordle?
Of course I use the information about the gray letters in filtering.
For now I use just simple calculation for ordering the candidates. On start the script calculates the frequencies of all letters, then later use them in sorting like this
- Prefer words with more distinct characters -- "mabel" ( 5 letters ) provides more information than "mamma" ( 2 letters )
- Prefer words with higher frequency letters -- "arose" ( average 8.58% ) provides better information than "quiff" ( average 2.66% )
But considering letter groups frequencies is an interesting idea and will give it a try.Currently the start guess is hardcoded as "alone", but you are right, we better not become predictable.
I always felt Ruby closer to my style. Just Ruby, no idea about Ruby on Rails. I definitely enjoy Python too, but as that is less efficient in command line one-liners, I tent to choose it rarely.
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
My first attempt took 3 guesses.
First guess had 1 letter in the wrong spot
Second guess had 4 letters in the wrong spots
Third guess was correct
With Mastermind, you are told how many are correct (black Peg)and how many are correct but wrong spot (White peg) but you are not told which letters are which. As a result, more than 6 guesses is quite common with Mastermind.
RE: Anyone tried Wordle?
Well, with mastermind the 6 colors may produce 1296 permutations, while the 26 letters compose 11423 5 letter words in english3.txt. On another site where is no daily word limit, I run into a word ending in "aker". And there are 9 such words. ( Of course, I was not able to guess it. ) Without information about which letters were actually found, I think this would be unplayable.
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
I am still interested in the question of how many guesses would be required by an optimal algorithm. Feherke's example of "_aker" shows that there are words that are still difficult to solve even after getting most of the letters. I'm not sure if I'm sufficiently motivated to try programming my own algorithm.
RE: Anyone tried Wordle?
In meantime I found an article about cheating on Wordle. Was not interested in, but checked the word list used by the code in the article : 2316 words containing only 3 words ending in "aker". If they reverse engineered the actually used word list, then the chances to win are higher than I estimated. Fact is, on powerlanguage I only lost once, while manually greping before my script and messing up the regular expression.
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
CODE
And there are only 3 words matching the pattern /^.aker$/
CODE
RE: Anyone tried Wordle?
e.g. On one of the puzzles my 3rd guess was Spill matching exactly for the S _ I L L
That left me with the following candidates based on letters already guessed and eliminated: Shill, Swill, Still, Skill
I realise now that I should have tried to combine H, W, T, and K into a 5 letter word for my 4th guess such as WATCH which would have guaranteed the win on the 5th but alas, I tried them 1 at a time and failed.
RE: Anyone tried Wordle?
Just as personal curiosity, kwbMitel are you using some automation or solving pure "manually" ?
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
Personally, I would never consider using an algorithm or any other (semi-)automatic way of solving the puzzle. The reason I enjoy doing it is the challenge of dredging my memory for words that might fit.
That said, thinking up automated ways to solve it is also a mental challenge, so good luck to those who are attempting it.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
I choose a new starting word every time. I try to include A,E,I,O,R,N,T,C in that word but this is just a guide
I always include revealed letters and always replace blanks with new letters.
My stats are ok but nothing to brag about
1 - 0
2 - 3
3 - 6
4 - 9
5 - 2
6 - 2
Fail - 2
RE: Anyone tried Wordle?
Well, with my English skill I have very limited chance without automation. The Hungarian variants I am able to enjoy more, but thinking to automate those too. Not to regularly use it, but there are 2 pretty different versions and handling both increases the programming challenge : https://jealousmarkup.xyz/szofejto/ vs. https://szozat.miklosdanka.com/
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
RE: Anyone tried Wordle?
Your point is well made. I've been is a similar situation, and like you I was lucky with my guesses.
However, an alternative strategy would have been as follows. You know that the word is SHA_E, and that the possible values for the missing letter are R, P, V, L, M, D and K. So for your second guess, disregard the letters you already have, and try to find a word that contain as many of R, P, V, L, M, D and K as possible. So you might have come up with PRIDE. That would have told you either that the target word contains P or R or D, or that it contains V or L or M or K. You now have three more guesses. If you know it contains P or R or D, you would guess each of those in turn, and you would be certain to solve the puzzle. If it contains the other letters, there would be three chances out of four that you would solve it.
Admittedly, this is not a very good example, partly because the missing letters are all consonants and, apart from the R, don't combine very well. But I hope you see my point.
I'm not saying this is the better strategy. But it is another approach to consider.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
The above example shows that regular mode and hard mode optimization have different optimizations with different maximum required guesses. I may never get around to programming a solution, but to me "hard mode" seems more intriguing. It's very possible that one's first guess in "hard mode" should avoid words like "chase" in order to avoid the pitfall of having too many words to eliminate, one letter at a time.
RE: Anyone tried Wordle?
The game that I've always played was at https://www.powerlanguage.co.uk/wordle, which as far as I know was the original - and until recently the only - version of the game. It's the one that has just been purchased by the New York Times (and that URL now redirects to https://www.nytimes.com/games/wordle/index.html).
Karluk, the link you posted seems to be to a different version of the game - although very similar to the one I know. Is that some sort of clone, I wonder.
(One of the interesting things about that version is that it supports multiple languages. I'm just off to try playing in French.)
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
Hard Mode
Dark Theme
Color Blind Mode
Side note: considering it is hosted in the UK I'm surprised that Color is not spelled Colour (or is that a Canadian thing?)
@Karluk - your example is exactly what I was speaking about regarding using algorithms.
RE: Anyone tried Wordle?
Well, that was a failure. I don't think I'll be trying that again. (Not helped by the fact that the solution actually contains four vowels.)
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
My understanding is that inventor, Mr Wardle, is a Welshman living in New York. But you're right. I noticed early on that the game uses US spellings. No doubt that will continue under the NY Times management.
Mike
__________________________________
Mike Lewis (Edinburgh, Scotland)
Visual FoxPro articles, tips and downloads
RE: Anyone tried Wordle?
I found a variant where instead of limiting the guesses, the number of failed letters is limited : https://murdle.vercel.app/
So here you have to be precautious with the non-hard specific strategy of revealing letters. In change trying those "sha[rpvlm]e" words only consumes 1 letter failure each.
Feherke.
feherke.github.io
RE: Anyone tried Wordle?
--
Rick C. Hodgin