Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from time import time
  2. import numpy as np
  3.  
  4. values = list(np.load("values.npy"))
  5. n = 7335
  6.  
  7. def sort_values():
  8. pass
  9.  
  10. start = time()
  11. sort_values()
  12. end = time()
  13. print(end - start)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement