You are given an array of shape (3,3). Which numpy function will help you create a 1D vector out of it with shape (9,) ? code example
Example: how to import numpy array in python
>>> import numpy as np
>>> a = np.array([0, 1, 2, 3])
>>> a
array([0, 1, 2, 3])