Skip to content

Instantly share code, notes, and snippets.

@Chuncheonian
Created March 17, 2021 04:33
Show Gist options
  • Save Chuncheonian/e16dc16c4f360329ffefdf058a216bd7 to your computer and use it in GitHub Desktop.
Save Chuncheonian/e16dc16c4f360329ffefdf058a216bd7 to your computer and use it in GitHub Desktop.
def performance_time(func, n):
start_time = time.time()
func(random_list(n))
end_time = time.time()
print(end_time - start_time)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment