Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given numbers differs from the others
. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given numbers finds one that is different in evenness, and return a position of this number.
!
Keep in mind that your task is to help Bob solve a real IQ test
, which means indexes of the elements start from 1 (not 0)
Examples:
iqTest("2 4 7 8 10") => 3
iqTest("1 2 1 1") => 2
function iqTest(numbers){
let arr = numbers.split(' ').map(n => +n);
if (arr.length < 3) return 1;
for (let i = 1; i < arr.length; i++){
let sum = arr[i-1] + arr[i];
if (sum % 2 === 0) continue;
let diff = arr.slice(i-2)[0];
if ((arr[i-1] + diff) % 2 === 1) return i;
if ((arr[i] + diff) % 2 === 1) return i+1;
}
return null;
}