Concept Flow - Finding gaps in sequences
Start with ordered sequence
Compare each value with previous
Check if difference > 1
Record gap
End of sequence
We look at each number in order and compare it to the one before. If the difference is more than 1, we found a gap.