<<-DOC 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 [time limit] 4000ms (rb) [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. DOC describe "#is_crypt_solution" do def crypt_solution?(crypt, solution) mapping = solution.to_h decoded = crypt.map do |word| word.chars.map { |x| mapping[x] }.join end return false if decoded.any? { |x| x.size > 1 && x[0] == "0" } decoded[0].to_i + decoded[1].to_i == decoded[2].to_i end [ { crypt: ["SEND", "MORE", "MONEY"], solution: [["O","0"], ["M","1"], ["Y","2"], ["E","5"], ["N","6"], ["D","7"], ["R","8"], ["S","9"]], x: true }, { crypt: ["TEN", "TWO", "ONE"], solution: [["O","1"], ["T","0"], ["W","9"], ["E","5"], ["N","4"]], x: false }, { crypt: ["ONE", "ONE", "TWO"], solution: [["O","2"], ["T","4"], ["W","6"], ["E","1"], ["N","3"]], x: true }, { crypt: ["ONE", "ONE", "TWO"], solution: [["O","0"], ["T","1"], ["W","2"], ["E","5"], ["N","6"]], x: false }, { crypt: ["A", "A", "A"], solution: [["A","0"]], x: true }, { crypt: ["A", "B", "C"], solution: [["A","5"], ["B","6"], ["C","1"]], x: false }, { crypt: ["AA", "AA", "AA"], solution: [["A","0"]], x: false }, { crypt: ["A", "A", "A"], solution: [["A","1"]], x: false }, { crypt: ["AA", "AA", "BB"], solution: [["A","1"], ["B","2"]], x: true }, { crypt: ["BAA", "CAB", "DAB"], solution: [["A","0"], ["B","1"], ["C","2"], ["D","4"]], x: false }, { crypt: ["BAA", "CAB", "DAB"], solution: [["A","0"], ["B","1"], ["C","2"], ["D","3"]], x: true }, { crypt: ["BAA", "BAA", "CAA"], solution: [["A","0"], ["B","1"], ["C","2"]], x: true }, { crypt: ["AA", "BB", "AA"], solution: [["A","1"], ["B","0"]], x: false }, { crypt: ["FOUR", "FOUR", "EIGHT"], solution: [["F","5"], ["O","2"], ["U","3"], ["R","9"], ["E","1"], ["I","0"], ["G","4"], ["H","7"], ["T","8"]], x: true }, { crypt: ["AAAAAAAAAAAAAA", "BBBBBBBBBBBBBB", "CCCCCCCCCCCCCC"], solution: [["A","0"], ["B","1"], ["C","2"]], x: false }, { crypt: ["AAAAAAAAAAAAAA", "BBBBBBBBBBBBBB", "CCCCCCCCCCCCCC"], solution: [["A","1"], ["B","2"], ["C","3"]], x: true }, { crypt: ["WASD", "IJKL", "OPAS"], solution: [["W","2"], ["A","4"], ["S","7"], ["D","9"], ["I","1"], ["J","0"], ["K","6"], ["L","8"], ["O","3"], ["P","5"]], x: true }, { crypt: ["WASD", "IJKL", "OPAS"], solution: [["W","2"], ["A","0"], ["S","4"], ["D","1"], ["I","5"], ["J","8"], ["K","6"], ["L","3"], ["O","7"], ["P","9"]], x: true }, { crypt: ["WASD", "IJKL", "AOPAS"], solution: [["W","2"], ["A","0"], ["S","4"], ["D","1"], ["I","5"], ["J","8"], ["K","6"], ["L","3"], ["O","7"], ["P","9"]], x: false }, { crypt: ["BLACK", "BLUE", "APPLE"], solution: [["B","5"], ["L","8"], ["A","6"], ["C","7"], ["K","0"], ["U","1"], ["E","9"], ["P","4"]], x: true }, { crypt: ["A" * 13, "A" * 13, "Z" * 13], solution: [["A", "1"], ["Z", "2"]], x: true }, { crypt: ["A" * 13, "Z", "Z" + ("B" * 13)], solution: [["A", "9"], ["B", "0"], ["Z", "1"]], x: true }, { crypt: [('A'..'Z').to_a.join, ('A'..'Z').to_a.join, "C"], solution: ('A'..'Z').each_with_index.map { |x, y| [x, (y + 1).to_s] }, x: false }, ].each do |x| it do expect(crypt_solution?(x[:crypt], x[:solution])).to eql(x[:x]) end end end