Help Solve Unique Digit Puzzle - Thank You!

  • Thread starter Thread starter nypuzzle
  • Start date Start date
  • Tags Tags
    Puzzle Thank you
AI Thread Summary
The discussion revolves around solving a unique digit puzzle where each letter represents a different digit from 0 to 9. The original poster found the puzzle challenging due to the lack of clear clues and resorted to brute-forcing the solution using a computer program. Participants noted the randomness of the letters, contrasting it with more typical puzzles that often involve recognizable patterns or words. One user shared their experience of writing a Perl script to test all digit combinations, which took only a few minutes to create and execute. The conversation shifted to exploring non-brute force methods for solving such puzzles, indicating a desire for more strategic approaches rather than purely computational ones.
nypuzzle
Messages
3
Reaction score
0
Hi guys,
Can you help me with this problem, please?

:confused:


...H
...______
EJS)HWNR
...CFJL
...______
...CHW


where each letter is unique digit from 0 to 9

thank you!
 
Physics news on Phys.org
That was a pretty tricky one. Not too many clues that I could divine from the puzzle itself, so I had to completely brute-force the answer using a computer program. Were there any additional hints provided with the problem?

The other strange thing about it seems to be that the letters are pretty random. Typically, you'd have the letters A-J, or have them spell out words, like:

...I
..._____
ANT)ISLE
...HONK
...-----
...HIS

Or even spell out a word if arranged in ascending or descending order. But in this case, it seems they were just random-- as though there ought to be more to the puzzle.

DaveE
 
Last edited:
hey davee123

there was nothing more

how did you write code for that, I want to try on my own

thanks
 
nypuzzle said:
how did you write code for that, I want to try on my own

I wrote a quick Perl script that went through all the possible combinations of 0-9. Effectively, it assigned a digit to each letter (my variable names were simply the letter names), and tested to see if that particular combination worked. Probably took less than 5 minutes or so to write the program, and maybe 20-30 seconds to run it.

I'd be interested to know if anyone here is able to use non-brute force on this problem. Otherwise, it's more like a programming challenge rather than a brain teaser or math problem.

DaveE
 
nypuzzle said:
...H
...______
EJS)HWNR
...CFJL
...______
...CHW

ok, I have it!

...7
..._____
934)7210
...6538
..._____
...672

but how can I get not by brute force..?
 
Similar to the 2024 thread, here I start the 2025 thread. As always it is getting increasingly difficult to predict, so I will make a list based on other article predictions. You can also leave your prediction here. Here are the predictions of 2024 that did not make it: Peter Shor, David Deutsch and all the rest of the quantum computing community (various sources) Pablo Jarrillo Herrero, Allan McDonald and Rafi Bistritzer for magic angle in twisted graphene (various sources) Christoph...
Thread 'My experience as a hostage'
I believe it was the summer of 2001 that I made a trip to Peru for my work. I was a private contractor doing automation engineering and programming for various companies, including Frito Lay. Frito had purchased a snack food plant near Lima, Peru, and sent me down to oversee the upgrades to the systems and the startup. Peru was still suffering the ills of a recent civil war and I knew it was dicey, but the money was too good to pass up. It was a long trip to Lima; about 14 hours of airtime...

Similar threads

Back
Top