题解 | #字符串加密#

字符串加密

https://www.nowcoder.com/practice/e4af1fe682b54459b2a211df91a91cf3


const readline = require('readline');

const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});
let index = 0
let key = ""
let str = ""
rl.on('line', function (line) {
    index++
    if (index === 1) {
        key = line
    }
    if (index === 2) {
        str = line
        solution()
    }
});
function solution() {
    let chars = Array.from(new Set(key))
    let origin = "abcdefghijklmnopqrstuvwxyz".split("")
    let trans = chars.slice()
    for (const char of origin) {
        if (!chars.includes(char)) {
            trans.push(char)
        }
    }
    let entries = origin.map((x, index) => [x, trans[index]] as [string, string])
    let map = new Map(entries)
    let res = str.split("").map(x => map.get(x)!).join("")
    console.log(res);

}


全部评论

相关推荐

有没有经济学家能告诉我,三年后中国的就业市场会不会好转?我在校招中拿到了一份9k+的offer,还是行业的龙头企业,心里其实不想再考研了。但又总是担心,万一读研后薪资更高,我会不会后悔呢?
Fyhyuky:三年后肯定不会啊,只会比现在更烂,你自己看看现在有没有什么增长点,电车都是国家补贴兜底才发展出来的,已经比较违背市场自然规律了,互联网更不用说了,国家强力打压,传统制造业转型失败,现在苟延残喘中
点赞 评论 收藏
分享
伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务