Example 1
1 <= keys.length == values.length <= 26values[i].length == 21 <= dictionary.length <= 1001 <= dictionary[i].length <= 100All keys[i] and dictionary[i] are unique.1 <= word1.length <= 20002 <= word2.length <= 200All word1[i] appear in keys.word2.length is even.keys, values[i], dictionary[i], word1, and word2 only contain lowercase English letters.At most 200 calls will be made to encrypt and decrypt in total.Example 1
1 <= keys.length == values.length <= 26values[i].length == 21 <= dictionary.length <= 1001 <= dictionary[i].length <= 100All keys[i] and dictionary[i] are unique.1 <= word1.length <= 20002 <= word2.length <= 200All word1[i] appear in keys.word2.length is even.keys, values[i], dictionary[i], word1, and word2 only contain lowercase English letters.At most 200 calls will be made to encrypt and decrypt in total.