Skip to content

Instantly share code, notes, and snippets.

@wenweixu
Created February 19, 2020 19:01
Show Gist options
  • Save wenweixu/955a88a097385e7da22319717892d6a0 to your computer and use it in GitHub Desktop.
Save wenweixu/955a88a097385e7da22319717892d6a0 to your computer and use it in GitHub Desktop.
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