JavaScript 中两个字符串的区别

javascriptweb developmentfront end technologyobject oriented programming

给定两个字符串,s 和 t。字符串 t 是通过随机打乱字符串 s 并在随机位置添加一个字母生成的。

我们需要编写一个 JavaScript 函数,该函数接受这两个字符串并返回添加到 t 的字母。

例如 −

如果输入字符串为 −

const s = "abcd", t = "abcde";

那么输出应该是 −

const output = "e";

因为 'e' 是添加的字母。

示例

const s = "abcd", t = "abcde";
const findTheDifference = (s, t) => {
   let a = 0, b = 0; let charCode, i = 0;
   while(s[i]){
      a ^= s.charCodeAt(i).toString(2);
      b ^= t.charCodeAt(i).toString(2);
      i++;
   };
   b^=t.charCodeAt(i).toString(2);
   charCode = parseInt(a^b,2);
   return String.fromCharCode(charCode);
};
console.log(findTheDifference(s, t));

输出

控制台中的输出将是 −

e

相关文章