From b57ab2d92ae08ee923f4d10e5c4665a426f68b64 Mon Sep 17 00:00:00 2001 From: Qian Qu Date: Mon, 24 Jun 2019 14:38:55 -0400 Subject: [PATCH] fix bug in problem 92 .md --- 100_Numpy_exercises.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/100_Numpy_exercises.md b/100_Numpy_exercises.md index c3ff2cc..edec397 100644 --- a/100_Numpy_exercises.md +++ b/100_Numpy_exercises.md @@ -1091,7 +1091,7 @@ print(R) ```python # Author: Ryan G. -x = np.random.rand(5e7) +x = np.random.rand(int(5e7)) %timeit np.power(x,3) %timeit x*x*x