Set routines


In [4]:
import numpy as np

In [5]:
np.__version__


Out[5]:
'1.11.2'

In [6]:
author = 'kyubyong. longinglove@nate.com'

Making proper sets

Q1. Get unique elements and reconstruction indices from x. And reconstruct x.


In [15]:
x = np.array([1, 2, 6, 4, 2, 3, 2])


unique elements = [1 2 3 4 6]
reconstruction indices = [0 1 4 3 1 2 1]
reconstructed = [1 2 6 4 2 3 2]

Boolean operations

Q2. Create a boolean array of the same shape as x. If each element of x is present in y, the result will be True, otherwise False.


In [19]:
x = np.array([0, 1, 2, 5, 0])
y = np.array([0, 1])


[ True  True False False  True]

Q3. Find the unique intersection of x and y.


In [20]:
x = np.array([0, 1, 2, 5, 0])
y = np.array([0, 1, 4])


[0 1]

Q4. Find the unique elements of x that are not present in y.


In [21]:
x = np.array([0, 1, 2, 5, 0])
y = np.array([0, 1, 4])


[2 5]

Q5. Find the xor elements of x and y.


In [40]:
x = np.array([0, 1, 2, 5, 0])
y = np.array([0, 1, 4])


[2 4 5]

Q6. Find the union of x and y.


In [42]:
x = np.array([0, 1, 2, 5, 0])
y = np.array([0, 1, 4])


[0 1 2 4 5]

In [ ]: