fix(curriculum): convert all video challenges to markdown (#39189)

This commit is contained in:
Shaun Hamilton
2020-08-04 20:56:41 +01:00
committed by GitHub
parent e7d2028bba
commit 7d8e558b91
69 changed files with 711 additions and 345 deletions

View File

@ -7,16 +7,18 @@ videoId: iIoQ0_L0GvA
---
## Description
<section id='description'>
</section>
## Tests
<section id='tests'>
```yml
````yml
question:
text: |
What is the value of `a` after running the following code?:
What is the value of `a` after running the following code?
```py
import numpy as np
@ -28,13 +30,18 @@ question:
answers:
- |
`[1 2 3 4 5]`
```python
[1 2 3 4 5]
```
- |
`[1 2 20 4 5]`
```python
[1 2 20 4 5]
```
- |
`[1 20 3 4 5]`
```python
[1 20 3 4 5]
```
solution: 2
```
````
</section>