Randell Dawson 94f0cf0ef8
chore(learn): Remove remaining isHidden keys from frontmatter (English and Chinese challenges) (#39809)
* fix: remove isHidden key from tool template

* fix: removed isHidden key from English challenges

* fix: remove isHidden key from Chinese challenges
2020-10-08 14:18:47 +02:00

50 lines
649 B
Markdown

---
id: 5e9a0a8e09c5df3cc3600ed9
challengeType: 11
videoId: VNWAQbEM-C8
---
## Description
<section id='description'>
</section>
## Tests
<section id='tests'>
````yml
question:
text: |
What code would produce the following array?
```py
[[1. 1.]
[1. 1.]
[1. 1.]
[1. 1.]]
```
answers:
- |
```py
a = np.ones((2, 4))
b = a.reshape((4, 2))
print(b)
```
- |
```py
a = np.ones((2, 4))
b = a.reshape((2, 4))
print(b)
```
- |
```py
a = np.ones((2, 4))
b = a.reshape((8, 1))
print(b)
```
solution: 1
````
</section>