Say you are given the crypt-arithmetic puzzle:
SEND + MORE = MONEY
The goal is to substitute numbers (0-9) for letters, so that the addition works out.
I understand how to approach the problem mathematically, but I am not sure how to solve this with a Relational Database.
How would a schema be designed to approach this problem?
How would an SQL query look that would attempt to solve this problem?
EDIT: There are some constraints:
- The same number should be used for a given letter, throughout. For example, if you guess "5" for the letter E, then E should get the value "5" at all the places it occurs.
- Different letters should get different numbers, e.g., you cannot assign "4" to both E and to M.
- None of the numbers(words) may have any leading zeroes
The author poses two distinct problems.
This answers the problem that is posed, OVER + FLOW = STACK where each character does not necessarily have a unique digit and more than 10 characters may be involved
Something like this may work where
Digits
table contains one column, where earch record contains an integer between 1 and 9 (or 0 through 9 if you wish).Cross joins are pretty nasty, performance-wise, but this may be a starting point.
Based upon my understanding of the problem, there are multiple solutions. Here's the first 5 that this code found:
I removed 0 because you can replace each letter with zero and get a cheap answer (based upon your initial question revision).
This is the only table
Digits