I got a popup 'Not a 5 digit prime' on my first try and it wouldn't let me try any further. Not sure if I'm dense or if the UX is just terrible I had tried 18141, by the way, which I modestly think was a pretty good guess in hindsight given its only two factors are 3 and 6047. 19141 would have been a prime, but perhaps not the one I was supposed to find? I don't play Wordle so I'm a little confused
You have to click delete to reset the last digit. I think it should clear the whole guess after an invalid guess.
Primel – guess a 5 digit prime number – each guess must be a prime
121–130 of 139 posts
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#122seq 10000 99999 | factor | grep '^\([^:]*\): \1$' | cut -d: -f1 >5_digit_primes.txt
Using that file with grep was helpful for refining guesses.
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#123My side-project this week has been searching for an optimal Wordle strategy. I figured it would make a great blog post but I haven't got that far yet. Step 1 is to find an optimal starting word. My most insightful finding so far has came from trying to define a cost function for comparing potential starting words. It turns out that "% of potential guesses [not] eliminated" is an excellent loss function. Importantly,…
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#124This script took less than a second to run: seq 10000 99999 | factor | grep '^\([^:]*\): \1$' | cut -d: -f1 >5_digit_primes.txt Using that file with grep was helpful for refining guesses.
I am stronger in python, and definitely wrote a script to cheat at Words With Friends back in the day (always told my friend afterwards and only pulled that stunt a few times).
If I had known posix better, my script may very well have been a one-liner of bash. Awk-ward.
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#125My side-project this week has been searching for an optimal Wordle strategy. I figured it would make a great blog post but I haven't got that far yet. Step 1 is to find an optimal starting word. My most insightful finding so far has came from trying to define a cost function for comparing potential starting words. It turns out that "% of potential guesses [not] eliminated" is an excellent loss function. Importantly,…
https://aditya-sengupta.github.io/coding/2022/01/13/wordle.h...
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#126Re: Primel – guess a 5 digit prime number – each guess must be a prime
#127My side-project this week has been searching for an optimal Wordle strategy. I figured it would make a great blog post but I haven't got that far yet. Step 1 is to find an optimal starting word. My most insightful finding so far has came from trying to define a cost function for comparing potential starting words. It turns out that "% of potential guesses [not] eliminated" is an excellent loss function. Importantly,…
I've given some light thought to this: There are several which are considered "good starting words", that mainly contain lots of vowels or most common used letters (such as "audio", Raise, etc). Then, as a second word, you could use another word that complements those letters (audio/rents, raise/mould ). But there is a better strategy (similar to what is used in those interview puzzles of "From N weights, find 1 that…
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#128Re: Primel – guess a 5 digit prime number – each guess must be a prime
#129My side-project this week has been searching for an optimal Wordle strategy. I figured it would make a great blog post but I haven't got that far yet. Step 1 is to find an optimal starting word. My most insightful finding so far has came from trying to define a cost function for comparing potential starting words. It turns out that "% of potential guesses [not] eliminated" is an excellent loss function. Importantly,…
Re: Primel – guess a 5 digit prime number – each guess must be a prime
#130Can't work out how to play again.