The question may seem a little obscure, but I'll try to break it down in layman's terms.
Let's say I have an array of 24 Byte values, containing only 0 or 1:
011000100000001000000111
The array is logically divided into groups of four values per group, which gives us:
0110 0010 0000 0010 0000 0111
Now, I'd like to count, how many subsequent groups have at least one value set to 1. In the example I provided, we have 2 subsequent groups.
How should I go about that programatically?