I'm trying to find the most pythonic way to find out if numbers in a list are sequential. To give some background, I have a list of numbers gathered that exist in a folder, and I need to find out which numbers are missing from a range supplied.
So, in a existing list of:
[1, 2, 3, 4, 10, 20]
And the supplied range of 1 - 40, the following would be missing:
[5-9, 11-19, 21-40]
I gather all of the numbers, and then make another list from the range(beginning, end+1) of what numbers should be there. I very easily made something to show me all of the numbers missing:
missing = [x for x in existingNumbers if x not in shouldBeNumbers]
The problem is that if I print out all of those, there are a lot of numbers that could be condensed (i.e. 1, 2, 3, 4, 7, 10 could be printed as 1-4, 7, 10) because there could be massive amounts of numbers missing.
I've tried two approaches:
For both ways, frameRange is range(startFrame, endFrame+1) and frameList is a list generated from what exists currently.
1)
for x in frameRange:
if x not in frameList:
if originalFrame == None:
originalFrame = x
elif originalFrame:
if lastFrame == None:
lastFrame = x
elif lastFrame:
if lastFrame == x-1:
lastFrame = x
else:
if originalFrame != lastFrame:
missingFrames.append(str(originalFrame)+"-"+str(lastFrame))
originalFrame = x
lastFrame = x
else:
missingFrames.append(str(originalFrame))
originalFrame = x
lastFrame = x
if x == endFrame:
if originalFrame != lastFrame:
missingFrames.append(str(originalFrame)+"-"+str(lastFrame))
originalFrame = x
lastFrame = x
else:
missingFrames.append(str(originalFrame))
originalFrame = x
lastFrame = x
2)
i = 0
while i < len(frameRange):
if frameRange[i] in frameList:
i += 1
else:
if i + 1 < len(frameRange):
if frameRange[i + 1] in frameList:
missingFrames.append(str(frameRange[i]))
i += 1
else:
j = 1
while frameRange[i+j] not in frameList:
aheadFrameNumber = int(str(j))
if i + j + 1 < len(frameRange):
j += 1
else:
break
missingFrames.append(str(frameRange[i])+"-"+str(frameRange[aheadFrameNumber]))
if i + aheadFrameNumber + 1 < len(frameRange):
i += aheadFrameNumber + 1
else:
missingFrames.append(str(frameRange[i]))
The first way was working, but since it happens on the current frame checking the last, whenever the last frame was gone it wouldn't append the last missing section to the list. For the second way I had to keep wrapping everything in if statements because I kept getting index exceptions when moving forwards.
I think I have to step back, re-think, and approach it differently. I'm wondering if there is a much better way to do this in python that I haven't thought about yet because I don't know the function. Both ways started to get a little out of hand.
UPDATE: I can't answer my own question for 8 hours, so I'm editing my post to show the solution:
Just as I thought, I had to step back and rework the idea.
Here is my solution, commented out for all of you.
# Initialize the missingFrames list and counters
missingFrames = []
firstMissingFrame = None
lastMissingFrame = None
i = 0
# While we haven't reached the end of our range
while i < len(frameRange):
# If the frame supposed to be there is there
if frameRange[i] in frameList:
# And we have set the firstMissingFrame
if firstMissingFrame is not None and lastMissingFrame is None:
# We're only missing a single frame in a row, so append it
# and reset the counters
missingFrames.append(str(firstMissingFrame))
firstMissingFrame = None
lastMissingFrame = None
# Or if first and last missing are set
elif firstMissingFrame is not None and lastMissingFrame is not None:
# Then there was more than one in a row, so append a range
# and reset the counters
missingFrames.append(str(firstMissingFrame)+"-"+str(lastMissingFrame))
firstMissingFrame = None
lastMissingFrame = None
# And then move on
i += 1
# If the frame supposed to be there is NOT there
else:
# And we are on the last frame
if frameRange[i] == int(endFrame):
# If the firstMissingFrame isn't set, set this as the first missing
if firstMissingFrame == None:
firstMissingFrame = frameRange[i]
# But if the first is set, then set this as the last missing
else:
lastMissingFrame = frameRange[i]
# Then, if only the first missing was set
if firstMissingFrame is not None and lastMissingFrame is None:
# We're only missing a single frame in a row, so append it
missingFrames.append(str(firstMissingFrame))
firstMissingFrame = None
lastMissingFrame = None
# Or if the first and last missing was set
elif firstMissingFrame is not None and lastMissingFrame is not None:
# We're missing multiple in a row, so append a range
missingFrames.append(str(firstMissingFrame)+"-"+str(lastMissingFrame))
firstMissingFrame = None
lastMissingFrame = None
# Then move on
i += 1
# If this isn't the last frame
else:
# And the first isn't already set
if firstMissingFrame == None:
# Set it and move on
firstMissingFrame = frameRange[i]
i += 1
# Or the first was set
else:
# Set this as the last and move on
lastMissingFrame = frameRange[i]
i += 1
[1,3,4,5,6,3,10,12]? or[1,2,3,4,7,17,18,19,20]. Also, what would be the desired outcome based on the given examples? – dtlussier Aug 16 '11 at 14:59[1,2,3,21,22,23,24]where the expected total would be 1-100. That would ouput"MISSING: 4-20, 25-100"Also, I've updated my original post with my solution after I left it alone for a while. It works, but if you have any suggestions, do tell. Thanks. – STH Aug 16 '11 at 15:07