From a191ae2803ecb16c5e2d71a7ef24257afd011744 Mon Sep 17 00:00:00 2001 From: brad-gh <32170926+brad-gh@users.noreply.github.com> Date: Fri, 16 Sep 2022 01:39:45 +0200 Subject: [PATCH] update audit --- piscine/week01/day01/ex01/audit/README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/piscine/week01/day01/ex01/audit/README.md b/piscine/week01/day01/ex01/audit/README.md index 58705c2..f054a29 100644 --- a/piscine/week01/day01/ex01/audit/README.md +++ b/piscine/week01/day01/ex01/audit/README.md @@ -1,11 +1,10 @@ -##### This exercise is validated if the your_numpy_array is a NumPy array. It can be checked with `type(your_numpy_array)` that should be equal to `numpy.ndarray`. And if the type of is element are as follow. +##### This exercise is validated if the your_numpy_array is a NumPy array. It can be checked with `type(your_numpy_array)` that should be equal to `numpy.ndarray`. -##### Try and run the following code. +##### Run all the cells of the notebook or `python main.py` -```python -for i in your_np_array: - print(type(i)) +##### The type printed are as follow. +``` @@ -15,5 +14,3 @@ for i in your_np_array: ``` - -###### Does it display the right types as above?