I am trying to find out if there are 2 consecutive n bits in a bit string that are n times less than n times.
For example, let's say we had a bit string size of 5 (index 0-4). If indices 1 and 3 were 0, I could return false. But if they were both, then I might need 5 peeks to find my answer.
The bit string should not be 5. For simplicity, let's say, it can be from 3 to 8.
EricP source share