NumPy - Array Operations
Given two NumPy arrays:
Which code snippet correctly creates a boolean array that is True where
a = np.array([1, 0, 3, 0, 5]) b = np.array([0, 2, 3, 4, 0])
Which code snippet correctly creates a boolean array that is True where
a is non-zero AND b is zero?