NumPy - Array Operations
Given two boolean arrays:
How can you create a new array that is True only if both
a = np.array([True, False, True]) b = np.array([False, True, False])
How can you create a new array that is True only if both
a and b are not True at the same time (i.e., NOT (a AND b))?