diff --git a/curriculum/challenges/english/08-data-analysis-with-python/numpy/copying-arrays-warning.md b/curriculum/challenges/english/08-data-analysis-with-python/numpy/copying-arrays-warning.md index a78825bca2..b6ef91a31d 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/numpy/copying-arrays-warning.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/numpy/copying-arrays-warning.md @@ -21,21 +21,21 @@ b[2] = 20 ## --answers-- -```python +
 [1 2 3 4 5]
-```
+
--- -```python +
 [1 2 20 4 5]
-```
+
--- -```python +
 [1 20 3 4 5]
-```
+
## --video-solution-- diff --git a/curriculum/challenges/english/08-data-analysis-with-python/numpy/mathematics.md b/curriculum/challenges/english/08-data-analysis-with-python/numpy/mathematics.md index 23575c1cd0..03319809ca 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/numpy/mathematics.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/numpy/mathematics.md @@ -20,27 +20,27 @@ b = np.max(a, axis=1).sum() ## --answers-- -```py +
 10
-```
+
--- -```py +
 7
-```
+
--- -```py +
 5
-```
+
--- -```py +
 15
-```
+
## --video-solution--