chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -4,41 +4,44 @@ challengeType: 11
videoId: CEykdsKT4U4
---
## Description
# --question--
<section id='description'>
</section>
## --text--
## Tests
What will the following code print?
<section id='tests'>
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
````yml
question:
text: |
What will the following code print?
print(np.full_like(a, 100))
```
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])
## --answers--
print(np.full_like(a, 100))
```
answers:
- |
```py
[[100 100 100 100 100]]
```
- |
```py
[[100 100 100 100 100]
[100 100 100 100 100]]
```
- |
```py
[[ 1 2 3 4 5]
[ 6 7 20 9 10]]
```
solution: 2
````
```py
[[100 100 100 100 100]]
```
---
```py
[[100 100 100 100 100]
[100 100 100 100 100]]
```
---
```py
[[ 1 2 3 4 5]
[ 6 7 20 9 10]]
```
## --video-solution--
2
# --hints--
# --solutions--
</section>