#Import the NumPy library
import numpy as np

#Creating an array
arr = np.array([[1, 2], [3, 4], [1, 2], [5, 6]])

#Applying the function which gives us
#the sorted unique rows of an array
unique_arr = np.unique(arr, axis=0)

#Displays result
print(unique_arr)