I have a list A containing an array with indices. I want to print all the unique index numbers by scanning each [i,j]. In [0,3], i=0,j=3. I present the expected output.
import numpy as np
A=[np.array([[[0, 1],
        [0, 3],
        [1, 3],
        [3, 4],
        [3, 6],
        [4, 5],
        [4, 7],
        [5, 7],
        [6, 4]]])]
The expected output is
A=[0,1,3,4,5,6,7]
 
     
     
     
    