Skip to content

Instantly share code, notes, and snippets.

@andersonleite
Created July 18, 2019 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersonleite/28b7aa3d028e9dad96762a14f618e2f1 to your computer and use it in GitHub Desktop.
Save andersonleite/28b7aa3d028e9dad96762a14f618e2f1 to your computer and use it in GitHub Desktop.
Cryptarithm
// A cryptarithm is a mathematical puzzle for which the goal is to find the correspondence between letters and digits, such that the given arithmetic equation consisting of letters holds true when the letters are converted to digits.
// You have an array of strings crypt, the cryptarithm, and an an array containing the mapping of letters and digits, solution. The array crypt will contain three non-empty strings that follow the structure: [word1, word2, word3], which should be interpreted as the word1 + word2 = word3 cryptarithm.
// If crypt, when it is decoded by replacing all of the letters in the cryptarithm with digits using the mapping in solution, becomes a valid arithmetic equation containing no numbers with leading zeroes, the answer is true. If it does not become a valid arithmetic solution, the answer is false.
// Note that number 0 doesn't contain leading zeroes (while for example 00 or 0123 do).
// Example
// For crypt = ["SEND", "MORE", "MONEY"] and
// solution = [['O', '0'],
// ['M', '1'],
// ['Y', '2'],
// ['E', '5'],
// ['N', '6'],
// ['D', '7'],
// ['R', '8'],
// ['S', '9']]
// the output should be
// isCryptSolution(crypt, solution) = true.
// When you decrypt "SEND", "MORE", and "MONEY" using the mapping given in crypt, you get 9567 + 1085 = 10652 which is correct and a valid arithmetic equation.
// For crypt = ["TEN", "TWO", "ONE"] and
// solution = [['O', '1'],
// ['T', '0'],
// ['W', '9'],
// ['E', '5'],
// ['N', '4']]
// the output should be
// isCryptSolution(crypt, solution) = false.
// Even though 054 + 091 = 145, 054 and 091 both contain leading zeroes, meaning that this is not a valid solution.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment