Created
August 22, 2018 15:39
-
-
Save pauloportella/2a73fbc035f552b44f4e3b036a5402e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isCryptSolution(crypt, solution) { | |
//Map every character, as given in the solution | |
var map = {}; | |
for(var m of solution) | |
map[m[0]] = m[1]; | |
//Ensure no leading zeroes or poorly translated values | |
for(var i in crypt) { | |
var line = crypt[i]; | |
if( line.length > 1 && map[line[0]] == "0" ) | |
return false; | |
crypt[i] = line.split``.reverse().join``; | |
} | |
//Ensure the values sum correctly | |
var carry = 0; | |
for(var i=0; i<crypt[2].length || carry; ++i) { | |
var a = ~~map[crypt[0][i]], | |
b = ~~map[crypt[1][i]], | |
c = ~~map[crypt[2][i]]; | |
var sum = a+b+carry; | |
carry = sum/10|0; | |
if(sum%10 != c) | |
return false; | |
} | |
return true; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
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. | |
Input/Output | |
[execution time limit] 4 seconds (js) | |
[input] array.string crypt | |
An array of three non-empty strings containing only uppercase English letters. | |
Guaranteed constraints: | |
crypt.length = 3, | |
1 ≤ crypt[i].length ≤ 14. | |
[input] array.array.char solution | |
An array consisting of pairs of characters that represent the correspondence between letters and numbers in the cryptarithm. The first character in the pair is an uppercase English letter, and the second one is a digit in the range from 0 to 9. | |
Guaranteed constraints: | |
solution[i].length = 2, | |
'A' ≤ solution[i][0] ≤ 'Z', | |
'0' ≤ solution[i][1] ≤ '9', | |
solution[i][0] ≠ solution[j][0], i ≠ j, | |
solution[i][1] ≠ solution[j][1], i ≠ j. | |
It is guaranteed that solution only contains entries for the letters present in crypt and that different letters have different values. | |
[output] boolean | |
Return true if the solution represents the correct solution to the cryptarithm crypt, otherwise return false. | |
[JavaScript (ES6)] Syntax Tips | |
// Prints help message to the console | |
// Returns a string | |
function helloWorld(name) { | |
console.log("This prints to the console when you Run Tests"); | |
return "Hello, " + name; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment