diff --git a/q01_zeros_array/build.py b/q01_zeros_array/build.py index 5501f7a..aab7f94 100644 --- a/q01_zeros_array/build.py +++ b/q01_zeros_array/build.py @@ -1,8 +1,15 @@ +# %load q01_zeros_array/build.py # Default Imports import sys, os sys.path.append(os.path.join(os.path.dirname(os.curdir), '..' )) import numpy as np -# Your solution + +def array_zeros(): + return np.zeros((3,4,2)) + + +array_zeros() +