2020-04-21 12:42:19 -04:00
|
|
|
---
|
|
|
|
id: 5e9a0a8e09c5df3cc3600ed2
|
|
|
|
title: What is NumPy
|
|
|
|
challengeType: 11
|
|
|
|
videoId: 5Nwfs5Ej85Q
|
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-08-04 20:56:41 +01:00
|
|
|
|
2020-04-21 12:42:19 -04:00
|
|
|
<section id='description'>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
2020-08-04 20:56:41 +01:00
|
|
|
|
2020-04-21 12:42:19 -04:00
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
question:
|
2020-08-04 20:56:41 +01:00
|
|
|
text: |
|
|
|
|
Why are Numpy arrays faster than regular Python lists?
|
|
|
|
|
2020-04-21 12:42:19 -04:00
|
|
|
answers:
|
2020-08-04 20:56:41 +01:00
|
|
|
- |
|
|
|
|
Numpy does not perform type checking while iterating through objects.
|
|
|
|
- |
|
|
|
|
Numpy uses fixed types.
|
|
|
|
- |
|
|
|
|
Numpy uses contiguous memory.
|
|
|
|
- |
|
|
|
|
All of the above.
|
2020-05-28 22:40:36 +09:00
|
|
|
solution: 4
|
2020-04-21 12:42:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|