题解 | #字符串加解密#

字符串加解密

http://www.nowcoder.com/practice/2aa32b378a024755a3f251e75cbf233a

没有花花肠子,直接暴力

借鉴题解区大佬的,写的js版本

function trans(str,b){
  let decode="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split('');
  let encode="BCDEFGHIJKLMNOPQRSTUVWXYZAbcdefghijklmnopqrstuvwxyza1234567890".split('');
  let res='';
  if(b){
    //加密
    res=str.split('').map(char=>encode[decode.indexOf(char)]).join('');
  }else{
    res=str.split('').map(char=>decode[encode.indexOf(char)]).join('');
  }
  return res;
}
let str1=readline();
let str2=readline();
console.log(trans(str1,true));
console.log(trans(str2,false));
全部评论
哎呦不错呦
点赞 回复 分享
发布于 2022-05-05 16:13

相关推荐

totoroyyw:千年老妖😂
投递华为等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务