NumPy - Array Operations
Identify the potential issue in this code:
import numpy as np arr = np.array([True, False, True]) result = np.logical_not(arr, out=arr) print(result)
