Hi
I’m trying to get the unique values into A variable bellow, but unique(A) isn’t showing the correct result, is repeating A. How could I get the real result: [1,2,4,5,6,7,8,10,11] ?
Thanks in advance!!!
A
5-element Vector{Vector{Int64}}:
[1, 2, 4]
[5, 6, 7, 8, 9, 11]
[5, 6, 7, 8, 9, 10, 11]
[5, 6, 7, 8, 9, 10]
[5, 6, 7, 8, 9]
unique(A)
5-element Vector{Vector{Int64}}:
[1, 2, 4]
[5, 6, 7, 8, 9, 11]
[5, 6, 7, 8, 9, 10, 11]
[5, 6, 7, 8, 9, 10]
[5, 6, 7, 8, 9]