From d6cd7e537ac3893d245ef77de398d1e6c94b591f Mon Sep 17 00:00:00 2001 From: gomsagar Date: Wed, 26 Sep 2018 15:29:45 +0000 Subject: [PATCH] Done --- q01_zeros_array/build.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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() +