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

ตรวจสอบว่าทศนิยมใช้ 1 บิตร่วมกันอย่างน้อย 2 บิตใน JavaScript


ปัญหา

เราจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่มีตัวเลขสองตัว ฟังก์ชันของเราควรคืนค่า จริง หากตัวเลขมี 1 ในการแทนค่าไบนารีที่ดัชนีเดียวกันสองครั้ง มิฉะนั้น จะเป็นเท็จ

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

const num1 = 10;
const num2 = 15;
const checkBits = (num1 = 1, num2 = 1) => {
   let c = num1.toString(2).split('');
   let d = num2.toString(2).split('');
   if(c.length > d.length){
      c = c.slice(c.length - d.length);
   }else{
      d = d.slice(d.length - c.length);
   };
   let count = 0;
   for(let i = 0; i < d.length; i++){
      if(c[i] === "1" && d[i] === "1"){
         count++;
      };
   };
   return count > 1;
};
console.log(checkBits(num1, num2));

ผลลัพธ์

ต่อไปนี้เป็นเอาต์พุตคอนโซล -

true