In Python how do I find all the missing days in a sorted list of dates?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
using sets
|
||||
|
|
|
Sort the list of dates and iterate over it, remembering the previous entry. If the difference between the previous and current entry is more than one day, you have missing days. Here's one way to implement it:
Output:
Performance is O(n*log(n)) where n is the number of days in the span when the input is unsorted. As your list is already sorted, it will run in O(n). |
|||||||
|
This also works for |
||||
|
|
Put the dates in a |
|||
|
|
|
|||
|
|
|
Using a list comprehension
|
|||
|
|