Tagged Questions
5
votes
8answers
710 views
How can I print only every third index in Perl or Python?
How can I do a for() or foreach() loop in Python and Perl, respectively, that only prints every third index? I need to move every third index to a new array.
1
vote
5answers
274 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 ...