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..?
 
Every day we learn new things. Sometimes it's just a small fact or realization. No matter how trivial or random, let's start recording our daily lessons. Please start off with "Today I learned". Keep commentary to a minimum and just LIKE posts. I'll start! Today I learned that you clean up a white hat by spraying some cleaner with bleach on it (rinse before putting it back on your head!)

Similar threads

Back
Top