From 5f9098110817d1150e419036b2482f2cc4328ff4 Mon Sep 17 00:00:00 2001 From: ieahleen Date: Fri, 1 Jan 2021 18:40:18 +0000 Subject: [PATCH] single line pre for numpy --- .../numpy/copying-arrays-warning.md | 12 ++++++------ .../numpy/mathematics.md | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) 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--