Hello, I want to write a user-defined function that would take a list of lists as an input, with each 'inner' list containing 2 integers - start date and end date, for example:
Input: [[1,3],[2,6],[8,10],[15,18]]
and would return the list of lists wi...