เราได้รับอาร์เรย์ของจำนวนเต็ม เราจำเป็นต้องค้นหาคู่ขององค์ประกอบที่อยู่ติดกันซึ่งมีผลิตภัณฑ์ที่ใหญ่ที่สุดและส่งคืนผลิตภัณฑ์นั้น
ตัวอย่างเช่น −
หากอาร์เรย์อินพุตเป็น −
const arr = [3, 6, -2, -5, 7, 3];
จากนั้นผลลัพธ์ควรเป็น 21 เพราะ [7, 3] เป็นคู่ที่มีผลรวมมากที่สุด
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
const arr = [3, 6, -2, -5, 7, 3]; const adjacentElementsProduct = (arr = []) => { let prod, ind; for (ind = 1; ind < arr.length; ind++) { if (ind === 1 || arr[ind - 1] * arr[ind] > prod) { prod = arr[ind - 1] * arr[ind]; }; }; return prod; }; console.log(adjacentElementsProduct(arr));
ผลลัพธ์
ต่อไปนี้เป็นผลลัพธ์บนคอนโซล -
21