3206-alternating-groups-i

DevGod
Vtuber
/** * @param {number[]} colors * @return {number} */var numberOfAlternatingGroups = function(colors) { const length = colors.length; let score = 0; for(let L = 1; L<length-1; L++){ if( colors[L-1] === colors[L+1] && colors[L-1] !== colors[L]){ score++; } }
if(colors[length-1] == colors[1] && colors[0] !== colors[1]){ score++; } if(colors[length-2] == colors[0] && colors[length-1] !== colors[0]){ score++; }
return score;};