I have the following numpy array with size (5,2):
A = [[5,6]
     [4,3]
     [2,1]
     [4,3]
     [8,9]]
I want to remove any repeated rows (so in this case [4,3]) and keep the first occurrence and return what looks like:
A = [[5,6]
     [4,3]
     [2,1]
     [8,9]]
     
 
     
    

 
    