I have an array which has duplicated values and I want to filter that array with the only unique elements. All values which have been duplicated or occurring more than 1 times should be excluded
Example: I have an array x which has these values
x = [1, 2, 3, 4, 2, 3]
Expected Result is
[1, 4]