From 0f313c521d637b18b5ee8b098b931273408aba87 Mon Sep 17 00:00:00 2001 From: Nitesh Seram Date: Sun, 31 May 2020 21:17:50 +0530 Subject: [PATCH] fix: Data Analysis with Python- Incorrect answer for Numpy Operations (#38972) * fix: Data Analysis with Python- Incorrect answer for Numpy Operations * Update curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/numpy-operations.english.md Change option from 2 to 1 Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> Co-authored-by: Tom <20648924+moT01@users.noreply.github.com> --- .../numpy-operations.english.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/numpy-operations.english.md b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/numpy-operations.english.md index a3946316a5..8a0a18b33e 100644 --- a/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/numpy-operations.english.md +++ b/curriculum/challenges/english/08-data-analysis-with-python/data-analysis-with-python-course/numpy-operations.english.md @@ -7,13 +7,15 @@ videoId: eqSVcJbaPdk --- ## Description +
## Tests +
-```yml +````yml question: text: | What is the value of `a` after you run the following code?: @@ -24,11 +26,10 @@ question: ``` answers: - - "[20, 21, 22, 24, 24]" - - "[0, 1, 2, 3, 4, 5]" - - "[25, 26, 27, 28, 29]" + - '[20, 21, 22, 24, 24]' + - '[0, 1, 2, 3, 4]' + - '[25, 26, 27, 28, 29]' solution: 2 -``` +````
-