Tagged Questions
1
vote
5answers
292 views
Finding data gaps with bit masking
I'm faced with a problem of finding discontinuities (gaps) of a given length in a sequence of numbers. So, for example, given [1,2,3,7,8,9,10] and a gap of length=3, I'll find [4,5,6]. If the gap is ...