I have list of records with start and end dates. I want to know which record dates overlap with other record dates. Below is the example, Record 5 dates overlap with records 3 and 4. How can I check this ?
I go through the link.
My question is because all the dates are in the same list, I have to take each record and compare against each other record which I think is a performance issue.
Is there any other way to do this ? like using Lambda ?