I have a list of lists where it looks like
[[1,'a',2],[1,'b',2],[1,'a',3]]
I want to remove the item from the list if the second element in the list of lists are the same (e.g. they are both a
)
I want to create output that looks like:
[[1,'a',2],[1,'b',2]]
where it grabs the first one in the list of the duplicates.