Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ความแตกต่างระหว่างสองสตริง JavaScript


เราได้รับสองสตริง พูด 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