number of unique values in numpy array code example
Example 1: python unique array of array numpy
>>> import numpy as np
>>> x = np.array([[1, 1], [2,3], [3,4]])
>>> np.unique(x)
array([1, 2, 3, 4])
Example 2: how to convert array of arrays into single array with unique values in numpy
set(array.flat)