fix bug in problem 92 .md

This commit is contained in:
Qian Qu 2019-06-24 14:38:55 -04:00 committed by GitHub
parent 73ff926ba4
commit b57ab2d92a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1091,7 +1091,7 @@ print(R)
```python
# Author: Ryan G.
x = np.random.rand(5e7)
x = np.random.rand(int(5e7))
%timeit np.power(x,3)
%timeit x*x*x