For example, replace ```py from numpy import * def sin_cos(x): sin(cos(array(x))) ``` with ```py import numpy as np def sin_cos(x): np.sin(np.cos(np.array(x))) ``` I'm not sure what the interface should look like.