I have a list of times and I want to make a list of lists where the elements of the larger list is a list where the first element is the time and the second element is the number of minutes from a set time. So for example, this is what I have
['2022-04-08, 1:05 pm',
'2022-04-09, 4:05 pm',
'2022-04-10, 7:08 pm',
'2022-04-11, 7:05 pm',
'2022-04-12, 7:05 pm',
'2022-04-13, 7:05 pm',
'2022-04-14, 7:05 pm',
'2022-04-22, 7:05 pm',
'2022-04-23, 1:05 pm',
'2022-04-24, 1:35 pm',
'2022-04-26, 7:05 pm',
'2022-04-27, 7:05 pm']
I'd like to have a list like this:
[[['2022-04-08'], ['1:05 pm'],[(minutes after 11:00 A.M)]]
[['2022-04-09'], ['4:05 pm'],[(minutes after 11:00 A.M)]],
[['2022-04-10'], ['7:08 pm'],[(minutes after 11:00 A.M)]],
[['2022-04-11'], ['7:05 pm'],[(minutes after 11:00 A.M)]],
[['2022-04-12'], ['7:05 pm'],[(minutes after 11:00 A.M)]],etc.