Feat: add new Markdown parser (#39800)

and change all the challenges to new `md` format.
This commit is contained in:
Oliver Eyton-Williams
2020-11-27 19:02:05 +01:00
committed by GitHub
parent a07f84c8ec
commit 0bd52f8bd1
2580 changed files with 113436 additions and 111979 deletions

View File

@ -5,42 +5,40 @@ challengeType: 11
videoId: f9QrZrKQMLI
---
## Description
# --question--
<section id='description'>
</section>
## --text--
## Tests
What will the following code print?
<section id='tests'>
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
print(b)
```
````yml
question:
text: |
What will the following code print?
## --answers--
```python
b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
print(b)
```
answers:
- |
```python
[[1.0 2.0 3.0]
[3.0 4.0 5.0]]
```
- |
```python
[[1. 2. 3.]
[3. 4. 5.]]
```
- |
```python
[[1. 3.]
[2. 4.]
[3. 5.]
```
solution: 2
````
```python
[[1.0 2.0 3.0]
[3.0 4.0 5.0]]
```
---
```python
[[1. 2. 3.]
[3. 4. 5.]]
```
---
```python
[[1. 3.]
[2. 4.]
[3. 5.]
```
## --video-solution--
2
</section>