Thoughts on Puzzle 30

Thanks will try to do it again lol

1 Like

Now my take on this puzzle: I found it easier than others as it didn’t rely on knowledge of obscure english words.

Easiest to implement are rules 1 and 5

But the most important clues are 6 and 11. Think about all combinations that result in right number of letters.

3 Likes

I was so sure I had it, but then my sudoku had multiple possible solutions AND none of the letters that came out formed anything close to a word…
I made a totally wild guess based on a combination of nonsensical answers I got and it happened to be it!!
I’m going to try reverse-solving it tomorrow now that I know some actual guaranteed numbers :sweat_smile:

2 Likes

Can someone who has solved it confirm the clues are all correct? I keep getting to a point where a one clue contradicts another or break the basic rules of suduko!!

1 Like

All the clues are correct. I solved it. And none of the rules of sudoku are broken.

2 Likes

According to the schedule, this puzzle closes on 4 Sep. Can anyone tell me exactly when the deadline is please? It would be useful for me to know how long I have left to figure it out, as I have a busy weekend ahead!

1 Like

I believe it’s midnight GMT

2 Likes

Same here I have read the instructions over and over again and I just don’t understand. I started to cry last night haha so I had to put it away. I don’t even know where to begin

2 Likes

This is pretty rough, ngl. I’m slightly too dumb (or too lazy) to figure out the givens, all I’ve got is F so far, but I’m stuck with the rest.

Instead, I tried to write a program to print out all the possible combinations of the possible letter combinations for the 9 values, but there are 387,420,489 of them and it’s just not feasible to sort through that way QQ

1 Like

I also wrote a code to determine all possible letter combinations, if you write it right, I can promise you, you can get a lot less than 387,420,489 (which also happens to be 9^9).

1 Like

Yeah, I’m sure there’s a way to filter out unreasonable letter combinations (ie, no word starts with ā€œcgā€ but I’m not a good enough coder to do that yet. lol

1 Like

It’s a lot easier than that. I spent 2-3 hours by hand the night it came out, no progress at all, woke up the morning of, solved it in less than 5 minutes using code. I believe you can do it!

1 Like

GOT IT! =D

I’m going to slowly peel myself out of this chair now. XD

1 Like

I’m brute forcing the diagonal with code today… Whilst there are 9^9 possible letter combinations, that can be significantly pared down before you even start. I have a list of 9-letter words from the official US Scrabble dictionary, which I’ve also pared down to around 4500 possibles. Stick it in an array and iterate with possible letter combinations… I’ll let you know if it works!

EDIT: Much to my surprise… it worked! I’ve entered a correct solution. I’ll now try to solve the rest of the puzzle.

4 Likes

I agree with igorgetmeabrain: I limited it to one by solving sudoku and it was very easy then :wink:

1 Like

No, you are not dense. You are onto something! Yes, for 3 givens to add to 25, you’d have to break Sudoku logic. Look real closely at the givens. I’m sure you’ll see it.

1 Like

Right, there are ways to satisfy the listed rules while violating Sudoku logic. But there is a solution that fits everything.

2 Likes

Agreed. Putting 6 and 11 together sets up a limited number of cases you need to explore. Then you can just run them down checking for inconsistencies until you find the right one.

2 Likes

Totally agree. On most of the obscure english puzzles I code something to just get the answer, and spend time on crossword helper pages. I guess the only recent exception were the rockets, where almost all english world were common.

For this one I sure could code something, but I had actual fun just solving it manually, with a spreadsheet as a my editor of choice for taking notes.

Yes, it took a lot of iterations, but it was a lot of actual fun.

Same with the sudoku itself, and ir was a pretty classic, with no need for any advanced elimination techniques.

I wish for more puzzles like this, where the weight is on the actual solving, and not on flexing the english dictionary.

3 Likes

YAY great job! Glad you got it!

1 Like