I have 2 lists of timestamps. One master list of timestamps "ideally" separated by 1 second and another searching list that does not have a defined interval between points. My issue is that there are duplicate timestamp values in my master list which means that some of the timestamps in my search list cannot be found in the master list. How do I go about finding what timestamps cannot be found in my search list? I have tried some solutions that I have found on here but nothing has yielded anything useful.
P.S. I am using numpy and pandas.
master = ['9:39:47' '9:39:48' '9:39:49' ... '14:21:10' '14:21:11' '14:21:12']
search = ['09:40:20' '09:40:26' '09:40:32' ... '14:20:25' '14:20:31' '14:20:37'] # 2,601 items