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?