feat(curriculum): add python multiple choice questions (#38890)

This commit is contained in:
Kristofer Koishigawa
2020-05-28 22:40:36 +09:00
committed by GitHub
parent 18d2dca05b
commit 3567813c51
98 changed files with 1118 additions and 398 deletions

View File

@ -15,12 +15,13 @@ videoId: 5Nwfs5Ej85Q
```yml
question:
text: Question
text: 'Why are Numpy arrays faster than regular Python lists?:'
answers:
- one
- two
- three
solution: 3
- Numpy does not perform type checking while iterating through objects.
- Numpy uses fixed types.
- Numpy uses contiguous memory.
- All of the above.
solution: 4
```
</section>