Created
February 19, 2020 19:01
-
-
Save wenweixu/955a88a097385e7da22319717892d6a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import numpy as np | |
start = time.time() | |
for r in range(10000): | |
for c in range(10000): | |
z = r + c | |
print(time.time() - start) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment